Inside Bar Pattern

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.

Identifying Inside Bars

The rules are straightforward:

  • The current candle's high is lower than the previous candle's high
  • The current candle's low is higher than the previous candle's low
  • The previous candle is called the mother bar

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.

Trading Inside Bars

There are two primary approaches:

  • ### Breakout Method
  • Place a buy stop above the mother bar high and a sell stop below the mother bar low
  • When one order triggers, cancel the other
  • Stop loss goes on the opposite side of the mother bar
  • ### Directional (with trend) Method
  • Only trade inside bars in the direction of the prevailing trend
  • In an uptrend, only take the break above the mother bar high
  • This approach has a higher win rate but misses reversal opportunities

The directional method is generally preferred by systematic traders because it aligns with the statistical edge of trend continuation.

Critical: require a confirmed close, not a wick

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.

Inside Bars as a Volatility Tool

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.