Volume Moving Average
Simple moving average of volume — establishes a baseline to detect spikes and lulls.
What it is
Volume SMA is exactly what its name says — a simple moving average of trading volume over a rolling N-bar window (typically 20 bars). It does not measure price at all. Its purpose is to give context to current volume: is today's bar trading at twice the recent average? Half? Roughly normal?
The vast majority of bars trade near average. The interesting bars — news days, breakouts, panic flushes — happen on multiples of average volume. Volume SMA is the baseline against which you measure those interesting bars.
How it's calculated
For an N-period Volume SMA:
Vol SMA = (V_1 + V_2 + ... + V_N) / N
where V_i is the volume of bar i in the rolling window. Computed exactly like a price SMA, but on the volume series.
How to interpret signals
Volume spike detection. Current volume / Vol SMA > 1.5 = elevated activity. > 2.0 = significant. > 3.0 = exceptional. Used as confluence filter for breakout signals.
Lull detection. Current volume / Vol SMA < 0.5 = unusually quiet. Often precedes meaningful moves (low-volume drift before high-volume reversal).
Trend health. A breakout on average-or-below volume is suspicious. A breakout on 2× volume is more credible.
Strengths
- Simplest possible volume context — the ratio is intuitive.
- Universally available and consistent across charting platforms.
- Excellent confluence filter — many strategies require volume > N× SMA before signals fire.
- Independent of price — gives a second dimension of confirmation.
Limitations
- Volume data on crypto exchanges can be unreliable (wash trading, exchange-aggregator inconsistencies).
- Period choice (20) is convention, not optimal for every asset.
- Equal weighting means a 20-bar-old volume spike stays in the average until it rolls off.
- Average volume varies dramatically by time of day in 24/7 markets — a single-period SMA misses session structure.
Common pitfalls
- Setting volume threshold (2× or 3×) based on one asset and applying universally.
- Ignoring time-of-day patterns — Asian-session crypto volume is a fraction of US-session volume.
- Treating low volume as automatically bearish — sometimes consolidation is healthy.
- Comparing absolute volume across assets (use the ratio to SMA, not raw numbers).
Related strategies in Backstrap
Educational note: This page explains what Vol SMA measures and how it is conventionally interpreted. It does not constitute investment advice. Past patterns do not guarantee future results, and no indicator works in all market regimes. See the full disclaimer.
Last updated: 2026-05-08