ATR (Average True Range)¶
Difficulty beginner
Definition¶
ATR measures market volatility by decomposing the entire range of an asset price for a period. Developed by J. Welles Wilder.
Calculation¶
True Range = max(High - Low, |High - PrevClose|, |Low - PrevClose|)
ATR = EMA(True Range, n) (typically n=14)
where:
Highbar high ·Lowbar low ·PrevCloseprior bar's close — included so gaps count as range ·True Rangethe larger of the intraday range and the gap-adjusted range ·EMA(., n)Wilder-smoothed exponential average overnperiods ·ATRaverage true range. does: measures absolute volatility in price units while ignoring direction. Traders size stops as a multiple of ATR (e.g.,entry − 2 × ATRfor longs) so risk scales with the asset's normal noise, set position size fromrisk / (ATR multiple)to equalize dollar risk across symbols, and watch rising ATR as confirmation that a breakout has real participation versus a quiet drift.
Trading Applications¶
Stop-Loss Placement¶
Common multipliers: - Tight: 1.0-1.5 × ATR - Normal: 2.0 × ATR - Wide: 3.0 × ATR
Practical Guidelines¶
- ATR Is Not Directional — Only measures volatility, not direction
- Adjust for Timeframe — Daily ATR ≠ Intraday ATR
- Normalize Across Assets — Use ATR% = ATR/Price for comparison
- Dynamic Stops — ATR stops adjust to changing volatility
- Volatility Regimes — Compare current ATR to historical average
Next Steps¶
- Ichimoku Cloud — Comprehensive trend system
- Fibonacci Retracement — Fibonacci levels