Summary
Wide-ranging days are trading sessions in which a security’s intraday range (high minus low) is substantially larger than normal. Traders use them—often via the true range, average true range (ATR), and the volatility ratio—to spot potential trend reversals or high-probability setups. This article explains the mechanics, gives practical detection steps, provides–with examples—the calculations, and lists confirmations, risk controls, and backtesting suggestions.
Source
This article is based on and expands the concepts described by Investopedia: “Wide-Ranging Days” . Additional foundational concepts come from J. Welles Wilder’s work on true range and ATR.
1) What a wide-ranging day is
– Definition: A wide-ranging day occurs when the trading range for a security (high minus low, or the “true range”) is much larger than a typical day’s range. These days reflect increased volatility and often come with elevated volume or news.
– Typical implication: Wide-ranging days frequently appear near turning points. Large wide-ranging days (extreme volatility) tend to indicate major trend reversals; smaller wide-ranging days can signal minor reversals or short-term exhaustion.
2) Key technical measures
– True Range (TR): For a given period (usually a day), TR is the greatest of:
1. High − Low
2. Absolute(High − Previous Close)
3. Absolute(Low − Previous Close)
• Average True Range (ATR): A moving average (commonly 14 periods) of the true range. Many traders use Wilder’s smoothing:
ATR_today = ((ATR_prev * (n − 1)) + TR_today) / n
(n is usually 14). ATR expresses average volatility in the same units as price.
• Volatility Ratio (VR): VR = TR_today / ATR (14). It standardizes today’s true range relative to recent volatility.
• Common threshold: VR > 2.0 (on a 14-day ATR) is commonly used by traders to flag a wide-ranging day.
3) Interpreting wide-ranging days
– Context matters: Look at the prior trend and where the wide-ranging day closes within its range.
• After a prolonged downtrend: A wide-ranging day that closes near the day’s high (strong close) often signals a bullish reversal or temporary bottom.
• After a pronounced uptrend: A wide-ranging day that closes near the low (weak close) often signals a bearish reversal or top.
– Extremes vs. minor moves: Very large VR readings typically indicate stronger reversal potential. Minor VR spikes may indicate brief pauses or minor pullbacks rather than definitive reversals.
4) Practical steps to identify wide-ranging days (manual or systematic)
Checklist:
1. Calculate TR for each day (see formula above).
2. Compute ATR (14) using Wilder’s smoothing or a 14-period EMA of TR.
3. Compute VR = TR_today / ATR_14.
4. Flag days where VR ≥ 2.0 (or another threshold you choose).
5. Contextualize: check the prior trend (lookback 20–50 bars), volume, support/resistance, and news.
6. Confirm with additional indicators (momentum, RSI, MACD) and price action (candlestick close location).
7. Decide on an actionable plan (e.g., wait for confirmation candle; set entry, stop, target).
Pseudocode for a screener
– For each symbol:
• TR_today = max(High − Low, abs(High − Close_prev), abs(Low − Close_prev))
• ATR_14 = WilderSmoothing(TR series, 14)
• VR = TR_today / ATR_14
• If VR >= 2.0: add to wide_range_list
5) Example calculation (simple)
– Previous close = 50.00
– Today high = 55.00, low = 48.00
– TR_today = max(55 − 48 = 7, |55 − 50| = 5, |48 − 50| = 2) = 7
– Suppose ATR_14 = 3.0
– VR = 7 / 3 = 2.33 → flagged as a wide-ranging day (VR > 2.0)
6) Trade entry ideas and confirmations
– Conservative entry: Wait for the next session’s price action to confirm the reversal (e.g., follow-through in direction of expected move, higher volume, bullish/bearish engulfing).
– Aggressive entry: Fade the extreme on expectation of mean reversion (riskier).
– Useful confirmations:
• Volume spike aligned with the wide-ranging day (adds conviction).
• Momentum divergence (e.g., RSI or MACD showing divergence relative to price).
• Price closing near opposite extreme (e.g., close near the high after a downtrend).
• Break of short-term structure (swing high/low, trendline, moving average).
– Avoid trading solely on VR; always combine with context and confirmation.
7) Risk management and trade management
– Position sizing: Use ATR to size positions (volatility-adjusted position size). For instance, set stop distance as a multiple of ATR (e.g., 1.5–2 ATR) and size position to keep dollar risk within limits.
– Stop placement: Place stops beyond the wide-ranging day’s extreme (low for bullish reversal, high for bearish reversal), or a volatility multiple depending on your time horizon.
– Targets: Use nearby structural levels (resistance/support), Fibonacci levels, or a risk:reward ratio (commonly 1:2 or 1:3).
– Timeframe alignment: Ensure your signal timeframe matches your trade timeframe. ATRs and VR thresholds should be calculated on the timeframe you intend to trade.
8) Special considerations and caveats
– News and earnings: Wide-ranging days caused by company-specific news or earnings releases behave differently. Reversals are less predictable immediately after major announcements; expect gaps and follow-through/noise.
– Low-liquidity stocks: Illiquid names can show artificially large ranges and false signals.
– Market-wide events: Macro moves (crashes, geopolitical events) produce many wide-ranging days; these often reflect systemic risk rather than single-stock reversal signals.
– False signals: Not every wide-ranging day leads to a sustained reversal; follow-through and additional confirmations reduce false positives.
9) Backtesting and evaluation
– Backtest any strategy that uses VR thresholds across multiple market regimes and across different securities (large cap vs. small cap, ETFs, commodities).
– Evaluate metrics: success rate, average return per trade, maximum drawdown, and risk-adjusted returns (Sharpe, Sortino).
– Walk-forward test and out-of-sample testing are recommended to avoid overfitting.
10) Quick practical checklist for traders
– Compute TR and ATR (14) daily.
– Scan for VR ≥ 2.0 (adjust threshold for your market/timeframe).
– Confirm the trend context (prior uptrend or downtrend).
– Look for volume confirmation and price close location within the day.
– Wait for a confirmation candle or set an entry with a disciplined stop.
– Size position using ATR-based volatility sizing.
– Monitor news and liquidity around the signal.
– Log trades and evaluate performance over time.
Fast facts
– Common ATR lookback: 14 periods (Wilder’s default).
– Typical VR threshold: 2.0 (TR is twice the ATR).
– TR uses the greater of three measures to incorporate gaps.
– Wide-ranging days commonly precede trend reversals but are not guarantees.
Further reading / sources
– Investopedia: “Wide-Ranging Days”
– J. Welles Wilder Jr., “New Concepts in Technical Trading Systems” (1978) — origin of ATR and related smoothing.
Editor’s note: The following topics are reserved for upcoming updates and will be expanded with detailed examples and datasets.