Aroon Down over the full window. AroonDown = 100 * (periodsSinceMin / periodLength) with the current bar excluded from the lookback.
Low prices (length >= 2).
Aroon Down in [0, 100].
https://tech.centaurresearchtechnologies.com/indicators/trend-indicators/aroon-indicator/ Explanation and interactive playground
Aroon Indicator triplet for the full window.
High prices.
Low prices.
[aroonUp, aroonDown, aroonOscillator].
https://tech.centaurresearchtechnologies.com/indicators/trend-indicators/aroon-indicator/ Explanation and interactive playground
Aroon Oscillator = AroonUp - AroonDown.
Aroon Up value.
Aroon Down value.
https://tech.centaurresearchtechnologies.com/indicators/trend-indicators/aroon-indicator/ Explanation and interactive playground
Aroon Up over the full window. AroonUp = 100 * (periodsSinceMax / periodLength) with the current bar excluded from the lookback.
High prices (length >= 2).
Aroon Up in [0, 100].
https://tech.centaurresearchtechnologies.com/indicators/trend-indicators/aroon-indicator/ Explanation and interactive playground
Long Parabolic Time Price System (SAR) step. sar = min(previousSar + af*(ep - previousSar), low).
Previous SAR (or window low if none).
Highest high for the period.
Step factor.
Current/previous period low clamp.
Next SAR.
https://tech.centaurresearchtechnologies.com/indicators/trend-indicators/parabolic-time-price-system/ Explanation and interactive playground
Short Parabolic Time Price System (SAR) step. sar = max(previousSar - af*(previousSar - ep), high).
Previous SAR (or window high if none).
Lowest low for the period.
Step factor.
Current/previous period high clamp.
Next SAR.
https://tech.centaurresearchtechnologies.com/indicators/trend-indicators/parabolic-time-price-system/ Explanation and interactive playground
True Strength Index (TSI) over the full window.
Prices.
First smoothing model (rolling).
First smoothing period.
Second smoothing model (single).
TSI value (unitless).
https://tech.centaurresearchtechnologies.com/indicators/trend-indicators/true-strength-index/ Explanation and interactive playground
Volume Price Trend (single step). vpt = prevVpt + volume * ((current - previous) / previous).
Current price.
Previous price.
Current volume.
Previous VPT seed.
Single-value trend indicators.