Definition of volatility breakout
A volatility breakout is a breakout rule that focuses on changes in price volatility (how much price moves) rather than only on direction. In a typical formulation, you first measure recent volatility using a range-based statistic over a fixed lookback window. Then you define a threshold that indicates volatility is “high enough.” A breakout is considered when price moves outside a reference level (often a recent high/low) during or after that volatility condition.
This article gives a worked example using a purely hypothetical price series. No real-time prices are used, and outcomes depend on execution details and market conditions.
Mechanism: turning the idea into calculations
A concrete volatility breakout setup needs explicit, checkable inputs:
- Lookback window (N): the number of prior candles/bars used to compute the baseline range.
- Baseline range statistic: a measure of recent volatility, such as the average of the last N ranges or the current range relative to that baseline.
- Breakout reference level: usually the highest high (for an upside breakout) or lowest low (for a downside breakout) over the lookback window.
- Volatility threshold (k): a multiplier or percentage above baseline that must be met.
- Execution assumptions: how entry and exits are handled (e.g., whether using market orders at the breakout bar close, or idealized fills).
To avoid mixing stable mechanics with variable provider conditions, the example below keeps the “rule” stable and makes only the scenario assumptions explicit.
Worked example (numerical, with every assumption)
Assumptions (all hypothetical)
- We trade on 1-hour bars; each bar has High and Low.
- We choose N = 5 for the lookback window.
- Baseline volatility measure: average range over the last 5 bars.
- Range for a bar = (High − Low).
- Breakout direction: upside.
- Breakout reference level: the maximum High among the last 5 bars.
- Volatility trigger: the breakout bar’s range must be at least k = 1.5× the baseline average range.
- Entry rule: enter at the breakout bar close (no intrabar execution modeling).
- Exit rule: use a fixed risk-reward with a stop-loss and take-profit based on the breakout bar’s range.
- Costs: assume no spread or commission (this is a limitation; real trading usually includes them).
Step 1: compute baseline average range (last 5 bars)
Assume the last 5 hourly bars have ranges (High − Low):
- Bar 1: 10
- Bar 2: 12
- Bar 3: 9
- Bar 4: 11
- Bar 5: 8
Average baseline range = (10 + 12 + 9 + 11 + 8) / 5 = 50 / 5 = 10.
Step 2: define the breakout reference level
Assume the maximum High among the last 5 bars is 105.
Step 3: evaluate the candidate breakout bar
Now consider the next bar (the candidate bar):
- Candidate bar High = 108
- Candidate bar Low = 95
- Candidate bar close = 106
Candidate bar range = 108 − 95 = 13. Volatility trigger check: required range = k × baseline = 1.5 × 10 = 15.
Because 13 < 15, the volatility trigger is not met, so the volatility breakout rule would not authorize a trade under this setup, even though the price exceeded the prior reference high (High 108 > 105).
Step 4: modify the scenario to show the “worked” pass condition
Assume instead the candidate bar Low is 93 (keeping High = 108):
- Candidate bar range = 108 − 93 = 15. Now the volatility trigger condition holds because 15 ≥ 15.
Breakout condition holds because High 108 > 105.
Step 5: compute entry, stop-loss, and take-profit (hypothetical)
With entry at close = 106:
- Stop-loss: assume it is placed 1.0× the candidate bar range below entry.
- Stop = 106 − 15 = 91.
- Take-profit: assume it is 0.8× the candidate bar range above entry.
- Take-profit = 106 + 0.8×15 = 106 + 12 = 118.
Check size of move to targets:
- Distance to stop = 106 − 91 = 15.
- Distance to take-profit = 118 − 106 = 12.
In this hypothetical, the decision is rule-driven: it happens only when both (a) price breaks the prior high and (b) the bar’s range meets the volatility threshold.
Limitations and failure modes
A worked example clarifies calculations, but volatility breakout has material limitations:
- False breakouts: price may briefly exceed the reference high while the move fails to continue. - Baseline mismatch: if volatility has regime-changed, an average of the last N ranges may be a poor baseline.