MRPNL

OHLC (Open-High-Low-Close)

OHLC BarOpen-High-Low-Close

The four prices that summarize a trading period — open, high, low, and close — the raw data behind every candlestick and bar chart.

Card view

Formula

Range = High - Low
Body = |Close - Open|
Upper Wick = High - max(Open, Close)
Lower Wick = min(Open, Close) - Low

OHLC stands for the four prices that define any trading period: the Open (first traded price), the High (highest price reached), the Low (lowest price reached), and the Close (last traded price). Together they compress an entire session into four numbers.

These four values are the raw input for the two dominant price charts. A candlestick draws the body between open and close and the wicks out to the high and low. An OHLC bar draws a vertical line from high to low, with a left tick marking the open and a right tick marking the close. Same data, different glyph.

Why each price matters:

  • The open and close together show net direction and conviction — a close far from the open is a decisive session.
  • The high and low mark the session's extremes, defining its range and the levels that were tested and rejected.
  • The close is usually treated as the most important of the four — it is the price the market agreed on after a full session of two-sided trading, and most indicators (moving averages, RSI, MACD) are calculated from closes.

Every candlestick pattern in this category is, at bottom, a relationship between the OHLC values of one or more periods.

Example

A daily bar prints Open 100.00, High 104.50, Low 99.20, Close 103.80. Range = High − Low = 104.50 − 99.20 = 5.30. The body (open to close) = 103.80 − 100.00 = 3.80, a bullish candle since the close is above the open. The upper wick = High − Close = 104.50 − 103.80 = 0.70; the lower wick = Open − Low = 100.00 − 99.20 = 0.80. A wide body with small wicks: a decisive up day.

#anatomy#charting#basics

Related Terms