The Average Daily Range (ADR) measures the average distance between High and Low prices over a specified period. Unlike its cousin ATR, ADR ignores gaps entirely. It answers a straightforward question: "How much does this asset typically move within a single bar?"
This simplicity is ADR's strength. When you don't care about overnight gaps—perhaps you're day trading or analyzing intraday bars—ADR gives you exactly what you need without the complexity of True Range calculations.
## Historical Context
ADR predates ATR conceptually. Traders have been calculating average ranges since price charts existed. While Wilder formalized ATR in 1978 to account for gaps, the original range-based volatility measure never disappeared.
ADR remains popular among:
- **Day traders**: Gaps don't matter when you close positions before the session ends.
- **Intraday analysts**: 5-minute bars rarely gap; High-Low is the relevant measure.
- **Forex traders**: 24-hour markets gap infrequently; ADR and ATR often produce nearly identical results.
## Architecture & Physics
ADR uses composition to delegate smoothing to proven moving average implementations. The range calculation is trivial; the smoothing method determines ADR's character.
### Core Formula
$$
Range_t = High_t - Low_t
$$
### Smoothing Options
1.**SMA (Simple Moving Average)**: Equal weight to all bars in the period. Classic, stable, but can be "jumpy" when old values drop off.
2.**EMA (Exponential Moving Average)**: More recent bars weighted higher ($\alpha = 2/(N+1)$). Responsive to recent volatility changes.
3.**WMA (Weighted Moving Average)**: Linear weighting. Middle ground between SMA and EMA.
### The Gap Non-Problem
ADR intentionally ignores gaps. This is not a flaw—it's a feature.
- **Scenario**: Close = 100. Next Open = 110. High = 112. Low = 109.
- **ADR Range**: $112 - 109 = 3$.
- **ATR Range**: $112 - 100 = 12$.
If you're trading intraday and won't hold through the gap, ADR's 3 is the relevant number, not ATR's 12.
**Note**: ADR is not a standard indicator in TA-Lib, Skender, Tulip, or Ooples. Validation is performed against manual calculations and cross-method consistency checks.
## ADR vs ATR: When to Use Which
| Scenario | Use ADR | Use ATR |
| :--- | :---: | :---: |
| Day trading (no overnight holds) | ✅ | |
| Intraday charts (1m, 5m, 15m) | ✅ | |
| 24-hour markets (Forex, Crypto) | ✅ | ✅ |
| Swing trading (overnight holds) | | ✅ |
| Daily charts with gaps | | ✅ |
| Position sizing through gaps | | ✅ |
### Common Pitfalls
- **Confusing ADR with ATR**: They measure different things. ADR ignores gaps; ATR accounts for them. Know which you need.
- **Wrong smoothing method**: SMA is stable but can jump when old values exit the window. EMA is smoother for trending volatility. Match the method to your use case.
- **Scale dependence**: Like ATR, ADR is absolute. An ADR of 5 on a \$100 stock is 5% volatility; on a \$10 stock, it's 50% volatility. Normalize if comparing across assets.