AFL Needed

#1
I need an afl for following conition,

as in price pan we all see open high low close in candlestik form

can someone built an afl for RSI which shows in candlestick form !!!

means what is its high or low for given candle !!!

as i have mansh rt for RT data i see RSI moving vth price in day chart

thanks :)
 
#2
i think it is very hard...
ok ,
lets try to make it simple


if RSI is for 14 days

make it last 13 close and 1 (14th) high and giv the green point to it

and last 13 close and 1 (14th) low and give it red point on chart

i think now it is very simple and get many replis


thanks
 
#3
Code:
periods = Param("Periods", 15, 1, 200, 1 );

RSIO = RSIa(O, periods);
RSIH = RSIa(H, periods);
RSIL = RSIa(L, periods);
RSIC = RSIa(C, periods);

PlotOHLC( RSIO, RSIH, RSIL, RSIC, _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), styleCandle );
 

Similar threads