← Retour à tous les indicateurs
ATR
Average True Range — volatility, used for stops/targets.
Qu'est-ce que c'est
Average True Range — volatility, used for stops/targets.
Average True Range (ATR), introduced by Wilder in 1978, measures volatility by averaging the 'true range' over a window (default 14). True range is the largest of: today's high − today's low; |today's high − previous close|; |today's low − previous close|. The previous-close legs handle overnight gaps.
ATR has the unit of price, not percent, so it scales naturally to whatever instrument you trade. It is the standard input to volatility-based stops: a 'chandelier exit' at 3 × ATR below the swing high adapts the stop distance to current market conditions instead of using a fixed-tick or fixed-percent stop.
Wilder's smoothing is a recursive EMA with α = 1/N, not the standard α = 2/(N+1). Some implementations use a simple moving average of TR instead — values can differ by a few percent.
TR_t = max(H_t − L_t, |H_t − C_{t-1}|, |L_t − C_{t-1}|)
ATR_t = ((N − 1) · ATR_{t-1} + TR_t) / NLisez la définition complète de Average true range (ATR) dans le glossaire →
Graphique en direct
BTC/USDT sur Binance avec cet indicateur préchargé. Propulsé par TradingView.
Graphique par TradingView. L'étude intégrée est montrée à titre d'illustration ; le moteur Noon Barbari calcule ses propres valeurs.
Paramètres
| Paramètre | Par défaut | Plage |
|---|---|---|
| Period | 14 | 2 – 200 |
Champs de sortie
Les valeurs nommées que cet indicateur expose à vos règles d'entrée et de sortie.
Stratégies associées
Des modèles prêts à l'emploi et exécutables qui utilisent cet indicateur. Ouvrez-en un pour l'inspecter ou le backtester.
En savoir plus sur le blog
Des articles détaillés sur cet indicateur et comment le trader.
How to backtest an ATR strategy on crypto (stops and sizing that adapt)
ATR isn't an entry signal — it's a volatility measure. The right way to backtest it is as the engine behind your stops and position sizing. Here's how, step by step.
The ATR indicator: why your stop-loss should be measured, not guessed
A fixed-percentage stop ignores how volatile the market actually is right now. Average True Range fixes that — it's the most useful indicator most traders underuse.
How to backtest a SuperTrend strategy on crypto
SuperTrend is an ATR-based trailing stop that flips long and short. Learn to turn it into testable rules, run it on real crypto history, and validate the edge with walk-forward.
Backtester cet indicateur
Placez cet indicateur dans un ensemble de règles, exécutez-le sur des années de données BTC/USDT et voyez si l'avantage est réel ou seulement ajusté à la courbe — sans carte bancaire.