Full credit goes to TradersZone:clap:
May be some one can tweak further more of this one with param or any thing else
May be some one can tweak further more of this one with param or any thing else
HTML:
g = Param("grid",0,5,200,5);
a = CCIa(ADX(14),14);
b = RSIa(a,14)-50;
if (ParamToggle("RSI of CCI ADX","On|Off",0)){
Plot(b,"RSI of CCI ADX",2);
Plot(g,"",4);
Plot(-g,"",5);
Plot(0,"",1);}
d = RSIa(ADX(14),14)-50;
e = CCIa(d,14);
if (ParamToggle("CCI of RSI ADX","On|Off",0)){
Plot(e,"CCI of RSI ADX",2);
Plot(g,"",4);
Plot(-g,"",5);
Plot(0,"",1);}