Volume‑Based Indicators

These indicators incorporate traded volume into the band value.

← Back to index

Learning Objectives

VWAP — Volume Weighted Average Price

{ "type": "vwap", "factors": { "offset": 0 } }

VWAP accumulates price×volume and divides by cumulative volume from an anchor (typically the start of day). It represents the average price paid per unit and is widely used as a benchmark by intraday participants. Because it resets with each session, VWAP behaves differently across days and is not comparable cross‑session without re‑anchoring.

VWAP (daily anchored) Grey intraday price with a blue VWAP that resets each session. Price ↑ Time → Price VWAP

Presets & notes

VWMA — Volume Weighted Moving Average

{ "type": "vwma", "factors": { "length": 20, "offset": 0 } }

VWMA weights each bar in a rolling window by its volume, making the average track high‑participation moves more closely than a simple average. It is well‑suited as a fast or medium‑speed line against a slower baseline.

Signals & Execution

Use closed‑bar cross logic and execute at the next open. For VWAP, ensure your chart uses the same daily anchor to mirror app semantics. VWMA uses the configured length like other moving averages.

Common Pitfalls

References