indicator("India VIX Modified",overlay=true)
A=ta.lowest(low,15)
B=low
C=close>open
D=B==A
Sell=C and D
E=ta.highest(high,15)
F=high
G=close<open
H=F==E
Buy=G and H
plotshape(Sell,"sell",style=shape.arrowdown,color=color.red)
plotshape(Buy,"Buy",style = shape.arrowup,color=color.green)
Hello All,
I want the above code for one security only so that when I overlay it on any chart / symbol, it picks result only of the security defined in the code. How do I use request.symbol function here?
Thanks