Vortex
<< Click to Display Table of Contents >> Vortex |
The Vortex indicator is an oscillator used to identify trends. A bullish signal triggers when the VIPlus line crosses above the VIMinus line. A bearish signal triggers when the VIMinus line crosses above the VIPlus line.
Vortex(int period)
Vortex(ISeries<double> input, int period)
Returns VIPlus value
Vortex(int period).VIPlus[int barsAgo]
Vortex(ISeries<double> input, int period).VIPlus[int barsAgo]
Returns VIMinus value
Vortex(int period).VIMinus[int barsAgo]
Vortex(ISeries<double> input, int period).VIMinus[int barsAgo]
double; Accessing this method via an index value [int barsAgo] returns the indicator value of the referenced bar.
input |
Indicator source data (?) |
period |
Number of bars used in the calculation |
// Prints the current VIPlus value of a 14 period Vortex
// Prints the current VIMinus value of a 14 period Vortex |