An inside bar is a candle whose entire range (high to low) fits within the range of the previous candle. It represents a contraction in volatility and consolidation. Inside bars often precede breakout moves and are popular among price action traders for both continuation and reversal setups.
The rules are straightforward:
Multiple consecutive inside bars (inside-inside bars) signal even tighter compression and can precede especially explosive moves.
Inside bars on the daily chart are the most commonly traded. On lower timeframes, they appear frequently and often lead to false breakouts. Stick to the daily chart (or 4H at minimum) for the most reliable setups.
There are two primary approaches:
The directional method is generally preferred by systematic traders because it aligns with the statistical edge of trend continuation.
The single biggest source of false signals in inside-bar breakouts is acting on an intrabar touch of the mother bar's high or low. An aggressive move may spike through the level on a wick and then close back inside the range, at which point the 'breakout' never actually happened. Always wait for a full bar close beyond the mother bar before acting:
``` breakUp = close > motherHigh and barstate.isconfirmed breakDown = close < motherLow and barstate.isconfirmed ```
A stop or stop-limit order placed at the level (rather than a reactive entry) will fill on the wick by design, so systematic traders usually prefer waiting for the confirmed close and entering on the next bar's open. This single discipline discards most of the noise-driven false breakouts on intraday inside bars.
Beyond pattern trading, inside bars are a useful volatility metric. A cluster of inside bars indicates a market that is coiling — building energy for a directional move. Some traders use inside bar frequency as a filter: avoid entering new positions during high inside-bar frequency (low volatility) and prepare for entries when the breakout occurs.