Noon Barbari
Registrarse
Todos los artículos
conceptoPublicado ·8 min de lectura

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.

En esta página

Most indicators try to tell you where price is going. Average True Range does not — and that is exactly why it is so useful. ATR measures one thing: how much an asset moves, on average, per bar. It is a pure volatility gauge, and it is the antidote to the single most common risk-management mistake in retail trading — the fixed-percentage stop-loss.

What ATR measures

For each bar, the "true range" is the largest of three distances: high minus low, high minus the previous close, and low minus the previous close. Using the previous close captures gaps. ATR is then a moving average of the true range over a lookback window — 14 bars by default. The result is a single number in price units: the typical size of a bar's move. A high ATR means a wide, fast market; a low ATR means a quiet, tight one.

The problem with a fixed-percentage stop

Say you always set a stop 3% below entry. In a quiet market, 3% is far away — normal noise will rarely reach it, but you are risking more than you need to. In a volatile market, 3% is right inside the noise band — you will be stopped out by a routine wiggle and then watch the trade go your way without you. The same number is too loose and too tight depending on a market condition the number itself ignores. A fixed stop is a constant pretending the market is constant.

Using ATR for stops

The standard pattern is a stop placed a multiple of ATR away from entry — commonly 2 to 3 times ATR. The multiple is a tradeoff: a tighter multiple (1.5x) cuts losers fast but gets shaken out more often; a wider one (3x) rides through noise but costs more when wrong. ATR also drives trailing stops: a 'chandelier' stop trails a multiple of ATR below the highest high since entry, locking in gains while still giving the trade room to breathe in proportion to current volatility.

Using ATR for position sizing

ATR also solves position sizing properly. Decide the fixed dollar amount you are willing to lose on a trade — say 1% of the account. Your stop distance, in price, is your ATR multiple. Position size is then simply your risk budget divided by that stop distance. The consequence is powerful: in volatile conditions the wide stop forces a smaller position, in calm conditions the tight stop allows a larger one, and your dollar risk per trade stays constant regardless of regime. That constancy is what makes a string of losses survivable.

ATR-based stop and sizing, in words
risk_budget   = 0.01 * account          # lose at most 1% per trade
stop_distance = 2.5 * ATR(14)            # in price units
position_size = risk_budget / stop_distance

# volatile market -> larger stop_distance -> smaller position
# calm market     -> smaller stop_distance -> larger position
# dollar risk per trade stays ~constant either way

ATR is one of the built-in indicators in Noon Barbari's indicator library, and the strategy designer lets you set ATR-multiple stops and volatility-scaled sizing on any rule set without code. Backtest a fixed stop against an ATR stop on the same strategy — the difference is usually not subtle.

ATR will never tell you what to buy. It tells you something more durable: how much room to give a trade and how large that trade should be. Guessing those numbers is optional. Measuring them is what separates a risk process from a hope.

Pruébalo con tus datos

Cada concepto de arriba está implementado en la plataforma. Backtest, walk-forward, paper trading, luego live — el mismo conjunto de reglas en cada etapa.

Lecturas relacionadas