Technical Analysis for Equity Markets
Master the art of technical analysis, focusing on chart patterns, indicators, and trading signals.
Content
Bollinger Bands
Versions:
Watch & Learn
AI-discovered learning video
Sign in to watch the learning video for this topic.
Bollinger Bands: Elastic Bands for Volatility (No Yoga Required)
"Think of price as a river and Bollinger Bands as the riverbanks — when the river squeezes, it wants to surge."
You already know moving averages (our backbone) and RSI (our momentum mood ring). Bollinger Bands build on both: they put volatility around a moving average and tell you when the market’s mood is calm, jittery, or about to party.
What Bollinger Bands Are — quickly and clearly
Core idea: Bollinger Bands are a moving average (usually 20 periods) with an upper and lower band set a number of standard deviations away (usually 2). The bands expand when volatility grows and contract when volatility falls.
Why it matters given market dynamics: We studied macro drivers of trends and investor behavior. Bollinger Bands translate that into actionable price-space: whether participants are crowding near extremes or waiting on the sidelines. When economic news increases volatility, bands widen; during quiet stretches they squeeze.
How they are constructed (the math you actually need)
- Calculate the n-period simple moving average: MA = SMA(n)
- Compute the n-period standard deviation of price: SD = stdev(n)
- Upper Band = MA + k * SD
- Lower Band = MA - k * SD
Typical defaults: n = 20, k = 2
Code-like pseudocode:
MA = SMA(close, 20)
SD = STDDEV(close, 20)
Upper = MA + 2 * SD
Lower = MA - 2 * SD
Micro explanation
- MA gives a central tendency — like the 'midline' we use for trend context.
- SD measures dispersion — volatility level.
- k scales how far the bands sit from the midline.
The three classic states and what to do
Squeeze (narrow bands)
- Interpretation: Very low volatility; liquidity is coiled.
- Typical behavior: Often precedes a volatility expansion/breakout, but not its direction.
- Use: Watch for breakout confirmation — volume surge, candlestick confirmation, and RSI moving out of neutral.
Breakout above the upper band
- Interpretation: Strong volatility + bullish pressure. But breakout alone is not a buy signal every time.
- Use: If the MA slope is positive and RSI confirms momentum (>50 and rising), it’s more likely a trend continuation.
Touch/rebound off a band (mean reversion)
- Interpretation: Price hitting the band can mean exhaustion in trending markets or a bounce in range-bound markets.
- Use: In sideways markets, consider mean-reversion trades when price touches lower/upper band with RSI extremes (oversold/overbought) and tight stops.
Combining with what you already know: RSI and Moving Averages
- From Moving Averages: Use the mid MA slope to qualify trend bias. If the MA is sloping up, weight bullish breakouts more heavily.
- From RSI: Confirm momentum. A breakout above the upper band with RSI rising above 60 is stronger than the same breakout with RSI stuck at 45.
Practical rule: "Upper-band breakout + MA slope up + RSI confirming = higher-probability trend trade."
Common Patterns, with a human analogy
- The Squeeze (quiet before the roar): Like watching a coiled spring — if you stare at it too long you’ll get sprung on. Prepare, don’t predict.
- False Breakouts: Bands are elastic; price often pokes outside and snaps back. Without volume/RSI/MA confirmation, these are often traps.
- Riding the Band: In strong trends, price can ‘hug’ the upper or lower band. That’s not a reversal signal — it’s a measure of momentum.
Practical trading setups (rules of thumb)
Mean Reversion (range markets)
- Criteria: Narrow range, MA flat, RSI near 30/70 extremes
- Entry: Price touches lower band + RSI < 30 → long
- Stop: just below the band or recent swing low
- Target: MA (midline) or upper band
Breakout (trend-following)
- Criteria: Squeeze resolves, bands widen, volume increases
- Entry: Candle closes outside band in direction of breakout + RSI confirms
- Stop: inside the band or below MA
- Manage: Trail stop using MA or a multiple of ATR
Band Ride (momentum)
- Criteria: Strong trend, price rides band, MA slope strong
- Entry: Pullback to MA or minor touch of band, in direction of trend
- Manage: Trail aggressively; don’t treat band touches as reversal by default
Metrics and tools to add depth
- %B = (Price - LowerBand) / (UpperBand - LowerBand)
- Shows relative position within bands (0 at lower, 1 at upper)
- Bandwidth = (Upper - Lower) / MA
- Measures relative width; high = high volatility
- Compare to Keltner Channels: Keltner uses ATR instead of SD. When Bollinger breaks outside Keltner, stronger volatility-based signal.
Table: Quick comparison
| Feature | Bollinger Bands | Keltner Channels |
|---|---|---|
| Volatility measure | Standard deviation | ATR |
| Reaction to big spikes | More sensitive | Smoother |
| Use-case | Volatility-based breakout/range | Trend confirmation when used together |
Pitfalls and risk management
- Never trade a band poke alone. Always require confluence — MA slope, RSI, volume.
- Beware of news-driven whipsaws — bands widen then re-tighten; stops must factor slippage.
- Parameter overfitting: 20/2 is default because it balances responsiveness and noise. Tweaking for past data without walk-forward validation invites curve-fitting.
Backtest tips:
- Use out-of-sample testing and walk-forward.
- Include transaction costs and slippage.
- Test multiple regimes: bull, bear, sideways.
Quick example (numbers)
Imagine a 20-day MA is 100, the 20-day SD is 3.
- Upper = 100 + 2*3 = 106
- Lower = 100 - 2*3 = 94
If price closes at 107 (outside upper), check: - Is MA rising? If yes, check RSI > 55 and volume spike. If confirmed, consider a trend entry.
Closing: Key takeaways
- Bollinger Bands = volatility wrapped around an MA. They tell you how far price normally travels, not the direction.
- Squeeze signals potential, not direction. Always seek confirmation before joining a breakout.
- Combine with MA slope and RSI (you already learned these) for higher-probability decisions.
"Bollinger Bands are like elastic: they stretch when things get wild and snap back when they calm. Use the snap wisely — with confirmation, stops, and a sense of humor."
Next steps (practical homework)
- Plot Bollinger Bands (20,2) on three US equities: one trending, one sideways, one recently volatile. Observe band behavior.
- Backtest two rules: (a) mean-reversion at lower band in range markets, (b) breakout after squeeze with RSI confirmation. Record win rate and average return.
- Try %B and Bandwidth as filters and compare returns.
Good luck. Bring snacks; technical analysis is a long, nerdy hike with occasional euphoria when a breakout finally behaves.
Comments (0)
Please sign in to leave a comment.
No comments yet. Be the first to comment!