← Volver a todos los indicadores
ATR
Average True Range — volatility, used for stops/targets.
Qué es
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) / NLee la definición completa de Average true range (ATR) en el glosario →
Gráfico en vivo
BTC/USDT en Binance con este indicador precargado. Con tecnología de TradingView.
Gráfico de TradingView. El estudio integrado se muestra a modo ilustrativo; el motor de Noon Barbari calcula sus propios valores.
Parámetros
| Parámetro | Predeterminado | Rango |
|---|---|---|
| Period | 14 | 2 – 200 |
Campos de salida
Los valores con nombre que este indicador expone a tus reglas de entrada y salida.
Estrategias relacionadas
Plantillas listas y ejecutables que usan este indicador. Abre una para inspeccionarla o testearla.
Aprende más en el blog
Artículos detallados sobre este indicador y cómo operarlo.
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.
Testea este indicador
Coloca este indicador en un conjunto de reglas, ejecútalo sobre años de datos de BTC/USDT y comprueba si la ventaja es real o solo está ajustada a la curva — sin tarjeta de crédito.