Aroon Oscillator
Description
A trend-following indicator that uses aspects of the Aroon indicator (“Aroon up” and “Aroon down”) to gauge the strength of a current trend and the likelihood that it will continue. The Aroon oscillator is calculated by subtracting Aroon down from Aroon up. Readings above zero indicate that an uptrend is present, while readings below zero indicate that a downtrend is present.
Courtesy of Investopedia
Syntax
AroonOscillator(int period)
AroonOscillator(ISeries\<double\> input, int period)
Returns default value
AroonOscillator(int period)[int barsAgo]
AroonOscillator(ISeries\<double\> input, int period)[int barsAgo]
Return Value
double; Accessing this method via an index value [int barsAgo] returns the indicator value of the referenced bar.
Parameters
Examples
Source Code
You can view this indicator method source code by selecting the menu New > NinjaScript Editor > Indicators within the NinjaTrader Control Center window.

