One correctly read candle gives you more information than any indicator ever will — because every candle is a complete record of who fought for price, who won, and where the next move is most likely to go.


Why Most Traders Skip Candles

The pattern is predictable: a new trader opens a chart, feels lost, and immediately adds indicators. MACD, moving averages, RSI — layer after layer. The irony is that each indicator they add is derived from the same candle data they are ignoring.

Indicators are lagging. They update after the candle closes. The candle itself is live. It tells you what is happening right now — the psychology behind every order, the zones where buyers stepped in, the levels sellers could not hold.

Market makers and institutional players cannot fake what is inside a candle. Their footprints are baked into the color, body, wicks, and size. Every candle is a battlefield report.


The Four Things You Read

You only need four elements to read any candle on any timeframe:

:::stats | Element | What It Tells You | |---|---| | Color | Which side won — buyers (bullish/green) or sellers (bearish/red) | | Body | How hard price was pushed — open to close range | | Wicks | Where price was rejected — the battle scars | | Size | How dominant the move was — can price make new highs/lows from here? | :::

Reading all four together gives you a complete picture of market state. Reading any one alone gives you a partial — and partial reads lead to bad trades.


Element 1: Color

Color shows you the session's winner. Green (bullish) means buyers drove price from open to a higher close. Red (bearish) means sellers drove it lower.

On short timeframes — 1-minute, 5-minute — color alone means very little. Price flips direction too often to draw conclusions from a single green or red bar.

On higher timeframes, it changes.

:::callout{type="info" title="Higher Timeframe Color Signal"} A weekly candle that closes bullish tells you buyers dominated the entire week. On weekly and monthly charts, the open price is largely set by market makers — not retail. When price holds above the weekly open and prints a bullish close, that is where big money has already committed to push price for that period. :::

// Color Signal — Timeframe Filter
IF timeframe >= daily:
    AND candle closes bullish (above open):
        BULLISH BIAS — buyers in control this period
    AND candle closes bearish (below open):
        BEARISH BIAS — sellers in control this period
ELSE (1m / 5m timeframe):
    Color alone = insufficient signal
    READ body + wicks + size before concluding

Element 2: Body

The body runs from the open to the close. A large body means price was pushed hard in one direction with minimal resistance from the opposing side. A small body means neither side dominated — price moved but found friction.

One critical pattern to understand: impulse candle fill.

When a large impulse candle prints in one direction, price will frequently come back to fill that candle's range later. In an uptrend, a large bearish candle will often get revisited and filled before the trend continues. In a downtrend, the reverse.

Why? Because the large candle body has already cleared out. It takes very little volume to move price back through a zone where there was no real opposition.

// Impulse Candle Fill Rule
IF a large impulse body prints in direction X:
    AND price later moves opposite to direction X:
        EXPECT price to re-test and fill the impulse candle body
        USE the candle body range as a support/resistance zone
ELSE (small bodies):
    Choppy accumulation — avoid guessing direction
    WAIT for a large expansion candle to confirm direction

Element 3: Wicks

Wicks are the most misread part of any candle. A wick is not noise — it is a direct record of rejection. Price tried to move to a level, got pushed back hard, and closed somewhere else.

A long lower wick on a downmove means buyers stepped in and rejected that low. That level now becomes a demand zone — a real support level, not a theoretical one. Price will frequently return to that exact wick level and bounce again.

A long upper wick on an upmove means sellers slammed price back. That level is supply — and price will often revisit it.

:::callout{type="tip" title="The John Wick Rule"} Some traders call long-wick candles "John Wick candles." One side attacks, and the other side wipes them out instantly. The wick is the evidence of that slaughter. Treat the wick tip as a key level — both as an immediate entry zone and as a future price target. :::

// Wick as Entry + Target
IF candle prints long lower wick:
    Lower wick tip = demand zone / support level
    USE as: (a) immediate long entry zone
             (b) future price target if price is above
    STOP = below wick tip with room (1x wick length below)

IF candle prints long upper wick:
    Upper wick tip = supply zone / resistance level
    USE as: (a) immediate short entry zone
             (b) future price target if price is below

Why does price come back to fill wicks?

When price spikes fast and then reverses, it traps traders who could not exit in time. Those traders are sitting with losing positions, waiting for price to return so they can break even. The moment price approaches that level again, they dump — creating a surge of sell orders. Big money uses this to clear inventory before pushing to new highs.

// Wick Fill Mechanics
WHEN price returns to a prior wick level:
    Trapped traders exit at break-even (sell pressure spike)
    ONCE trapped sellers are exhausted:
        Supply is cleared
        Price can push through to new levels with minimal resistance

Element 4: Size

The size of a candle — the full range from high to low — tells you how much force was behind the move. A candle that is overwhelmingly large compared to recent candles signals one dominant player moving with a single objective.

The first large impulse candle in a new direction is what to watch for. Retail traders cannot create these. Only market makers with a clear directional intent can print a candle that simply absorbs every opposing order and closes clean.

:::callout{type="warning" title="Accumulation Candles vs. Expansion Candles"} Small choppy candles = accumulation. Big money is building a position. Direction is not knowable yet — do not guess. Wait for the large expansion candle that confirms direction. Entering during accumulation is a common way to get trapped sideways for hours while big money finishes loading. :::

// Candle Size — When to Enter
IF candles are small and choppy:
    ACCUMULATION phase — do not enter
    WAIT for a large expansion candle to print and CLOSE

IF a large expansion candle closes in one direction:
    Accumulation is complete — big money has chosen direction
    ENTER on the NEXT candle (after close, never mid-candle)
    STOP = below the candle open (no lower wick = single dominant intent)
    TARGET = minimum 2:1 risk/reward

Two Patterns in Real Trades

Pattern 1: The Total Hammer

A downmove that has been running for 2+ hours suddenly prints a candle with a long lower wick that retraces more than 50% of its range before closing. This is the Total Hammer.

After the first 2 hours of a session, most institutional position-building is done. Large counter-trend orders are unlikely. A hammer in this window is a high-probability reversal signal.

// Total Hammer Entry
IF price has been falling for 2+ hours:
    AND a candle prints long lower wick:
        AND wick retracement > 50% of candle range:
            ENTER long on the NEXT candle open
            STOP = 1x wick length BELOW the hammer low (not at the low — gives room)
            TARGET = prior swing high / previous structure level
ELSE:
    Not confirmed — do not enter during candle formation

Pattern 2: Accumulation Breakout

Small candles print in a tight range for multiple bars. Then a large bullish candle appears and closes at or near its high — with little or no lower wick. The open is at or near the low of the candle. No opposition, no resistance, one dominant player.

// Accumulation Breakout Entry
IF small choppy candles followed by large expansion candle:
    AND candle closes near its high:
        AND lower wick is minimal (open near low):
            WAIT for candle to CLOSE completely
            ENTER on next candle open
            STOP = below the expansion candle OPEN
            TARGET = 2:1 minimum, trail stop once 2:1 is hit
    ELSE (large candle but wick is long):
        Indecision — reassess before entering

Gap-Up Confirmation

When a daily candle closes with a long lower wick after a multi-day selloff, and the next morning price opens with a gap above the prior close, there is a two-layer confirmation available before entering:

// Gap-Up + Hourly Confirmation
IF daily hammer prints at the end of a downtrend:
    AND next day opens with a gap above prior close:
        DROP to 1-hour chart
        IF first hour candle closes BULLISH:
            ENTER long immediately
            STOP = prior day's low or close
            EXPECTED reward = 5:1 or better on strong gaps
        IF first hour candle closes BEARISH:
            DO NOT ENTER — yesterday's buyers are exiting
            WAIT for another hourly confirmation before committing

The logic: a gap up with a bearish hourly candle tells you that traders who bought yesterday are already selling this morning. The gap has not attracted fresh buyers yet. Wait.


The Sequence That Changes Everything

Indicators confirm what a candle has already told you. They are a second opinion, not a first opinion.

:::callout{type="tip" title="The Hierarchy"} Candle reading is primary. Indicators (including Bollinger Bands from the previous lesson) are confirmation tools layered on top. If you cannot read the candle first, an indicator will give you false confidence in a bad trade. :::

The progression for every trade:

  1. What is the candle saying? (color + body + wicks + size)
  2. Where is this candle relative to prior structure? (supply/demand zones, prior wick levels)
  3. What does the indicator confirm? (optional but reinforcing)
  4. What is the risk/reward? (stop = clear level, target = minimum 2:1)
  5. Wait for the candle to close before entering.
// Full Candle-First Entry Protocol
FOR any potential trade:
    READ the candle: color → body → wicks → size
    IDENTIFY the nearest prior structure level
    IF candle signals reversal OR breakout:
        AND structure supports the read:
            AND risk/reward >= 2:1:
                WAIT for current candle to CLOSE
                ENTER on NEXT candle
    ELSE:
        No trade — sit on hands

Price does not lie inside candles. The body, wicks, and size are a direct record of what every participant did during that session — retail, institutional, market makers. Once you can read that record, you stop needing an indicator to tell you what already happened.

Next lesson: We put the Double BB and candle reading together to build a complete entry checklist for Nasdaq day trades.