aroon_osc
Aroon Oscillator - difference between Aroon Up and Aroon Down
aroon_osc(period)
Parameters
| Name | Type | Description |
|---|---|---|
period |
int | Number of periods for the Aroon calculation |
Formula
Aroon Oscillator = aroon_up(period) - aroon_down(period)
Examples
aroon_osc(25); # Standard Aroon Oscillator
aroon_osc(25) > 50; # Strong uptrend
aroon_osc(25) < -50; # Strong downtrend
aroon_osc(25) > 0; # Any uptrend (positive)
Returns
float
Range
period must be 2-400
Notes
Values above +50 signal a strong uptrend, below -50 a strong downtrend; zero-line crossings mark trend changes
See Also
References
TradingView: aroon_up - aroon_down; developed by Tushar Chande