← Torna a tutti gli indicatori
ATR
Average True Range — volatility, used for stops/targets.
Che cos'è
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) / NLeggi la definizione completa di Average true range (ATR) nel glossario →
Grafico live
BTC/USDT su Binance con questo indicatore precaricato. Fornito da TradingView.
Grafico di TradingView. Lo studio integrato è mostrato a titolo illustrativo; il motore Noon Barbari calcola i propri valori.
Parametri
| Parametro | Predefinito | Intervallo |
|---|---|---|
| Period | 14 | 2 – 200 |
Campi di output
I valori denominati che questo indicatore espone alle tue regole di entrata e uscita.
Strategie correlate
Modelli pronti ed eseguibili che usano questo indicatore. Aprine uno per ispezionarlo o testarlo.
Approfondisci sul blog
Articoli di approfondimento su questo indicatore e su come usarlo.
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.
Testa questo indicatore
Inserisci questo indicatore in un set di regole, eseguilo su anni di dati BTC/USDT e scopri se il vantaggio è reale o solo adattato alla curva — senza carta di credito.