TL;DR
OHLCV is the standard bar format for financial price data — Open, High, Low, Close, and Volume for each time period — and it is the raw material from which virtually every chart, indicator, and backtesting system is built.
What Is OHLCV Data?
OHLCV stands for Open, High, Low, Close, Volume — the five data points that define a price bar for any time period. Whether the period is 1 minute, 1 hour, 1 day, or 1 month, each bar summarizes all trading activity within that period into these five values: the price at the period’s start (Open), the highest price reached (High), the lowest price reached (Low), the final price (Close), and the total volume of contracts or shares traded (Volume).
OHLCV is the lingua franca of financial data. Every candlestick chart is a visual representation of OHLCV data — the candle body shows Open and Close, the wicks show High and Low, and volume is typically shown as a bar chart below. Every technical indicator — from a simple moving average to a complex ATR-based Supertrend — is calculated from OHLCV inputs. Every backtesting system processes OHLCV bars sequentially to simulate strategy execution.
Understanding OHLCV data at the structural level matters for systematic traders because the choice of bar size — and the assumptions embedded in how bars aggregate raw transactions — affects strategy behavior. A 5-minute OHLCV bar summarizes 5 minutes of potentially thousands of individual trades. The high and low of that bar represent the extreme prices reached within those 5 minutes, but they may have been achieved by a single brief spike or sustained pressure — the OHLCV bar alone cannot tell you which. This ambiguity is why some advanced traders work with tick data.
Key Formula / Numbers
OHLCV bar structure:
| Component | Meaning | Used In |
|---|---|---|
| Open | First trade price of the period | Gap analysis, opening range strategies |
| High | Highest trade price of the period | Resistance identification, ATR calculation |
| Low | Lowest trade price of the period | Support identification, ATR calculation |
| Close | Last trade price of the period | Most MA/RSI/ATR calculations use Close |
| Volume | Total contracts/shares traded | VWAP, OBV, volume confirmation signals |
Common OHLCV-derived calculations:
Typical Price = (High + Low + Close) / 3 → Used in VWAP, CPR
Midpoint = (High + Low) / 2 → Used in CPR calculation
True Range = max(H-L, |H-PrevC|, |L-PrevC|) → ATR input
How Quantzee Uses This
All Quantzee indicators process standard OHLCV bars in TradingView’s Pine Script environment. The non-repainting guarantee is directly tied to OHLCV data: signals are calculated and locked at bar close — the moment when the Close value is finalized and the bar is complete. Using bar close as the signal trigger means the OHLCV data driving the signal is complete and unchanged, which is the fundamental condition for a non-repainting indicator.
Common Mistakes
- Assuming the High or Low price was held for more than an instant: The High of an OHLCV bar might represent a single trade at that price. A strategy that places limit orders at the bar’s High is assuming fills that may not have been achievable in real trading.
- Confusing timeframe OHLCV with market microstructure: A 1-day OHLCV bar tells you the range and close, but nothing about the intraday path — whether the market opened, sold off to the Low, then rallied to the High before closing, or opened, spiked to the High immediately, and then drifted down to close. This path ambiguity affects stop-placement strategies.
- Using adjusted close without understanding the adjustment: Many data providers supply “adjusted close” prices that account for dividends and splits. Strategies tested on adjusted close may behave differently on raw price data — verify which version your backtest is using.
Related Terms
FAQ
What does OHLCV stand for?
OHLCV stands for Open, High, Low, Close, Volume — the five data points that define a price bar for any time period and form the raw input for virtually all technical analysis and backtesting systems.
What is the most important OHLCV value?
The Close price is the most commonly used value in technical indicators (most moving averages, RSI, and ATR calculations default to Close) because it represents the final consensus price where buyers and sellers agreed to end the period.
How is OHLCV different from tick data?
OHLCV summarizes all trading activity within a fixed time period into five values; tick data records every individual transaction — price, time, and volume of each trade. Tick data is more granular but requires more processing; OHLCV is the standard for most retail and systematic trading applications.