Need AFL which change RSI into candlestick

#2
Hi Anshul,

Candle stick needs open, high, low, close kind of data. RSI is a simle array of numbers ranging between 0 and 100. Technically it's not possible.
 
#3
Pandeyji, If you want RSI in candlestick format then below afl may useful..

//Reference//https://www.wisestocktrader.com/indicators/1178-rsi-chart-for-amibroker-afl
//Written by: Suicide

_SECTION_BEGIN("RSI Chart");
SetChartOptions(0,0,chartGrid30|chartGrid70);
periods = Param( "Periods", 15, 1, 200, 1 );

O1 = RSIa( Open, periods );
H1 = RSIa( High, periods );
L1 = RSIa( Low, periods );
C1 = RSIa( Close, periods );

PlotOHLC( O1, H1, L1, C1, "RSI Chart", styleCandle );
_SECTION_END();
 

Similar threads