OPEN-SOURCE SCRIPT

Clean Volume Bars

57
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")

免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。