← Script Marketplace
Open-source scriptindicator/v1

Volume-Weighted Average Price

by Kodexius·@kodexius·

Track the cumulative average traded price weighted by volume from each daily anchor.

#benchmark#volume#vwap
Volume-Weighted Average Price chart preview

Description

Volume-Weighted Average Price combines typical price and volume from the start of each daily session. It provides a participation-weighted reference that traders often compare with current price when evaluating intraday location and execution.

Open-source script. Everyone can inspect the source code, use the script on a chart, and save an editable copy.

Release notes

Version history · 1 published version

Version 1CurrentChart updatedVolume-Weighted Average Price · Aug 31, 2026
Release notes

Initial classic indicator release.

View current source ↓
Source codempl-2.0View source

indicator("Volume-Weighted Average Price", { overlay: true });
const source = input.source("Source", "hlc3");
const anchor = input.select("Anchor", "day", ["day", "week", "month"]);
const line = vwap(source, anchor);
plot(line, { title: "VWAP", color: "#2962ff", lineWidth: 2 });
  

Community discussion

0 comments

Loading…

No comments yet. Start the discussion.