TradingView
straxico
Mar 22, 2020 6:11 PM

going to hell Short

Bitcoin / TetherUSBinance

Description

cmv say we go down
Comments
Top_sniper
what is the complete name of cmv indicator?
straxico
@m-natami,

it is my first custom indicator
not published

//@version=4
study(title="cci Moving Average volume", shorttitle="cmv")
lenma = input(9, minval=1, title="Length")
lencci = input(20, minval=1, title="Length")
ma = sma(volume*sign(change(close)), lenma)
out = cci(ma,lencci)
plot(out)
band1 = hline(100, color=color.gray, linestyle=hline.style_dashed)
band0 = hline(-100, color=color.gray, linestyle=hline.style_dashed)
fill(band1, band0, color=color.olive)
More