Aroon Oscillator = AroonUp - AroonDown.
Aroon Up value.
Aroon Down value.
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.
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.
True Strength Index (TSI) over the full window.
Prices.
First smoothing model (rolling).
First smoothing period.
Second smoothing model (single).
TSI value (unitless).
Volume Price Trend (single step). vpt = prevVpt + volume * ((current - previous) / previous).
Current price.
Previous price.
Current volume.
Previous VPT seed.
Single-value trend indicators.