MarcoValente

Qstick V2

68
this is the Qstick as described by Tushar S. Chande and Stanley Kroll and post from AleksandrLombrozo , so all credit for this code going to him. I just add the option to change both of the sources (close , open)
Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

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.

Want to use this script on a chart?
//@version=2
//Can choose the source to apply
study("Qstick V2")
src=input(close,title="source 1")
src1=input(open,title="source 2")
lenght=input(defval=8,title="length_Qstick", step=1)
difference=sum(src,lenght)-sum(src1,lenght)
ema_input=input(defval=5,title="length_ema", step=1)
ema=ema(difference,ema_input)
plot(difference, color=red, linewidth=2, style=histogram)
plot(ema,color=blue,transp=20)