Yes shubh03 it is possible.
Here i present u the OHLC candle form RSI.
similarly u can do others too.
Here i present u the OHLC candle form RSI.
similarly u can do others too.
Code:
periods = Param( "Periods", 21, 1, 200, 1 );
//r= RSI( periods);
O=RSIa(O, periods);
H=RSIa(H, periods);
L=RSIa(L, periods);
C=RSIa(C, periods);
PlotOHLC(O,H,L,C,"RSI "+periods, ParamColor( "Color", colorBlack ), ParamStyle("Style",styleCandle) );
_N(Title = StrFormat(" \n Op=> %g, \n Hi=> %g, \n Lo=> %g, \n Cl=> %g, \n " , O, H, L, C));
how to use it for stochi indicator