OPEN-SOURCE SCRIPT
Clean Volume Bars

As it says, simple clean volume indicator.
I could find what I wanted so I created this using AI.
Here is the script:
//version=5
indicator("Clean Volume Bars", shorttitle="Clean Vol", overlay=false)
vma = ta.sma(volume, 20)
col = close>open? color.new(color.green,0) : close<open? color.new(color.red,0) : color.gray
plot(volume, style=plot.style_columns, color=col, title="Volume")
plot(vma, color=color.gray, title="Vol MA 20")
I could find what I wanted so I created this using AI.
Here is the script:
//version=5
indicator("Clean Volume Bars", shorttitle="Clean Vol", overlay=false)
vma = ta.sma(volume, 20)
col = close>open? color.new(color.green,0) : close<open? color.new(color.red,0) : color.gray
plot(volume, style=plot.style_columns, color=col, title="Volume")
plot(vma, color=color.gray, title="Vol MA 20")
Open-source script
In true TradingView spirit, the creator of this script has made it open-source, so that traders can review and verify its functionality. Kudos to the author! While you can use it for free, remember that republishing the code is subject to our House Rules.
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.
Open-source script
In true TradingView spirit, the creator of this script has made it open-source, so that traders can review and verify its functionality. Kudos to the author! While you can use it for free, remember that republishing the code is subject to our House Rules.
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.