Indicator Guide
"Formula the engine actually uses" on each card is exactly what the backtest computes — this matters when reproducing results outside the system or exporting to Python: RSI/ATR/ADX use Wilder RMA, not SMA. Writing it the textbook way with SMA gives a different value and the backtest result won't match.
- EMA — Exponential Moving Average
ema— Trend direction, weighting recent bars more heavily - SMA — Simple Moving Average
sma— Average price, weighted equally across every bar - ATR — Average True Range
atr— Volatility (average per-bar swing distance) - ADX — Average Directional Index
adx— Trend strength (doesn't indicate direction) - RSI — Relative Strength Index
rsi— Momentum / overbought-oversold zone (0-100) - MACD — Moving Average Convergence Divergence
macd— Trend momentum (the difference between a fast and slow EMA) - Bollinger Bands (middle)
bb— Bollinger middle line = SMA(period) - Rolling Min
rolling_min— The lowest value in an N-bar window (includes the current bar) - Rolling Max
rolling_max— The highest value in an N-bar window (includes the current bar) - Rolling Mean
rolling_mean— The N-bar average of any series - Swing High
swing_high— The highest high of the prior N bars (excludes the current bar — already shifted) - Swing Low
swing_low— The lowest low of the prior N bars (excludes the current bar — already shifted)