Tick Volume (Tick Vol)
Tick Volume measures the number of price changes (ticks) within a period. In forex where true volume is unavailable, tick volume serves as a reliable proxy for market activity.
TL;DR
- Tick Vol is a volume indicator used in technical analysis
- High tick volume on breakouts confirms conviction. Low volume on pullbacks suggests healthy trend. Volume spikes often precede significant moves.
- Best timeframes: M15, H1, H4
- Skip to API docs →
What is Tick Volume?
Tick Volume measures the number of price changes (ticks) within a period. In forex where true volume is unavailable, tick volume serves as a reliable proxy for market activity.
How Tick Vol is Calculated
Tick Volume = count of price changes within the bar period
Note: This is not traded volume but correlates with actual market activity. How to Interpret Tick Vol
High tick volume on breakouts confirms conviction. Low volume on pullbacks suggests healthy trend. Volume spikes often precede significant moves.
Trading Strategies Using Tick Vol
Strategy 1: Volume Confirmation
Use tick volume to confirm or reject price breakouts.
Entry Rules
Only enter breakout trades when tick volume is above the 20-bar average.
Exit Rules
Exit if volume does not sustain above average in the direction of the breakout.
Combining Tick Vol with Other Indicators
Tick Vol works best when combined with complementary indicators:
- Tick Vol + OBV: Combine for stronger confluence signals
- Tick Vol + MFI: Combine for stronger confluence signals
- Tick Vol + A/D Line: Combine for stronger confluence signals
Tick Vol Across Different Timeframes
Tick Vol works across all 7 timeframes but performs best on M15, H1, H4 for most trading styles.
Accessing Tick Vol via TickAtlas API
https://tickatlas.com/v1/indicator Python Example
import requests
url = "https://tickatlas.com/v1/indicator"
headers = {"X-API-Key": "YOUR_API_KEY"}
params = {
"symbol": "EURUSD",
"indicator": "Tick_Volume",
"timeframe": "H1"
}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data) Sample Response
{
"symbol": "EURUSD",
"indicator": "Tick_Volume",
"timeframe": "H1",
"timestamp": "2026-03-21T14:00:00Z",
"value": 1234567,
"signal": "neutral"
} Common Mistakes to Avoid
- 1
Treating tick volume as identical to actual traded volume
- 2
Ignoring volume analysis entirely in forex
Frequently Asked Questions
Is tick volume reliable in forex?
Yes. Multiple studies show tick volume correlates 90%+ with actual futures volume. It is a reliable proxy for measuring market activity and confirming price movements.
Continue learning
More volume indicators
- Indicator
On-Balance Volume (OBV)
OBV is a cumulative volume indicator that adds volume on up days and subtracts on down days.
Read more - Indicator
Money Flow Index (MFI)
MFI is a volume-weighted version of RSI.
Read more - Indicator
Accumulation/Distribution Line (A/D)
The A/D Line measures the cumulative flow of money into and out of a security.
Read more
Ready to use Tick Vol data in your application?
Start your free trial and access real-time Tick Vol data across 7 timeframes.