Backstrap
VolatilityATR

Average True Range

Volatility measure capturing the typical bar-to-bar price range, including overnight gaps.

What it is

ATR, another Wilder original (1978), measures the typical "size" of bars โ€” how much price moves within a single period plus any overnight gap. It is the foundation of most volatility-aware risk management: stops sized in ATR, position sizing in ATR, slippage models in ATR.

The "True" in True Range matters: it accounts for overnight gaps. A bar's True Range is the largest of (a) high โˆ’ low, (b) |high โˆ’ previous close|, (c) |low โˆ’ previous close|. This catches the case where price gaps overnight and the actual price travel is far larger than the visible bar range.

How it's calculated

For N-period ATR (default 14):

1. For each bar, compute True Range:

TR = max( High โˆ’ Low, |High โˆ’ PrevClose|, |Low โˆ’ PrevClose| )

2. ATR = Wilder-smoothed average of TR over N bars.

The Wilder smoothing seeds the first ATR value as the SMA of the first 14 TRs, then each subsequent value is:

ATR_new = (ATR_prev ร— 13 + TR) / 14

How to interpret signals

ATR is a volatility unit, not a direction signal. Its value is in scaling other things:

Stop sizing. A "2ร— ATR" stop sets risk at twice the typical bar's range, automatically tightening in calm markets and widening in volatile ones.

Position sizing. Risk a fixed dollar amount, then size = risk รท (entry distance to stop in ATR units). This produces consistent dollar risk regardless of volatility regime.

Volatility regime detection. Rising ATR signals expanding volatility (often before/during major moves). Falling ATR signals consolidation.

Strengths

  • Captures overnight gaps โ€” more honest than simple high-low range.
  • Self-adapting: produces sensibly-sized stops in both calm and wild markets.
  • Universally used in serious risk management โ€” every quant strategy reasons in ATR.
  • Simple, well-defined, no parameter beyond the period.

Limitations

  • Not a direction signal โ€” using ATR alone gives no entry or exit.
  • Lags after sudden volatility regime changes (Wilder smoothing dampens fast moves).
  • Period choice (14) is convention, not optimal for every asset.
  • ATR is in price units, not percentages โ€” comparing ATR across assets requires normalization (e.g., ATR / Close).

Common pitfalls

  • Comparing raw ATR across different-priced assets without normalization.
  • Using too-tight ATR multipliers (0.5ร—) โ€” stopped out by normal noise.
  • Forgetting ATR is in price units; you must multiply by lot size for true dollar risk.
  • Trusting ATR-sized stops in extremely thin liquidity, where slippage may exceed ATR.

Related strategies in Backstrap

Educational note: This page explains what ATR measures and how it is conventionally interpreted. It does not constitute investment advice. Past patterns do not guarantee future results, and no indicator works in all market regimes. See the full disclaimer.

Last updated: 2026-05-08