Open-source scriptindicator/v1
Volume
Display traded volume for every bar with colors that follow the bar direction.
#activity#volume
Description
Volume shows the amount traded during each chart period. Comparing activity across bars can help confirm participation in advances, declines, breakouts, and reversals, although volume conventions depend on the selected market.
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 · Aug 31, 2026
Source codempl-2.0View sourceHide source
indicator("Volume", { overlay: false });
const colors = close.map((v, i) => v >= open[i] ? "#26a69a" : "#ef5350");
plot(volume, { title: "Volume", type: "columns", color: colors });
Community discussion
0 comments
No comments yet. Start the discussion.