SuperTrend draws a single trend line on the chart by trailing an ATR-scaled band above or below the midpoint price (hl2 = (high + low) / 2). The line latches in place each bar — only ratcheting tighter in the trend direction — and only flips when the close crosses to the other side of the opposite band.
Default settings are ATR period 10 and factor 3.0: the band sits 3 × ATR(10) above hl2 in a downtrend and 3 × ATR(10) below hl2 in an uptrend. Lower factors flip more often (faster, noisier); higher factors flip less often (smoother, laggier).
Like every ATR-band trailing stop, SuperTrend is a trend-following tool. It performs well in directional moves and chops itself to pieces in ranges, so it is normally paired with a regime filter.
Formule
upper = hl2 + factor · ATR(N); lower = hl2 − factor · ATR(N) flip to bull when close > previous upper; flip to bear when close < previous lower
Exemple
ATR(10) = 200, factor 3, hl2 = 50,000. Upper band = 50,600, lower band = 49,400. A close above 50,600 flips the line to the lower band and turns the trend bullish.
Comment Noon Barbari utilise SuperTrend
Chaque concept ici est implémenté dans la plateforme. Ouvre la documentation ou l'outil concerné pour le voir en action.
Use SuperTrend in noonbarbari →Termes liés
- Indicateurs
Average true range (ATR)
Rolling average of the true range — the canonical volatility measure for stops.
- Risque
Trailing stop
A stop that ratchets in the trade's favor and never moves against it.
- Indicateurs
Blackflag FTS
A SuperTrend variant that adds a gap-adjusted true range, a trend-extreme tracker, and Fib pullback levels.
- Indicateurs
Trend Magic
A wick-anchored ATR band that ratchets one way or the other depending on the sign of CCI.