Deleted RSI indicator

#1
Hi there, whilst trying to remove RSI from my chart, I accidently deleted the whole indicator from Amibroker and can't recover it. Wondering is someone can pass me the afl file?

It would be in:

C:\Program Files\AmiBroker\Formulas\Indicators (named as RSI)

Or just paste the code and the exact file name would also do

thanks alot!
 

hmsanil

Active Member
#2
HTML:
_SECTION_BEGIN("RSI");
SetChartOptions(0,0,chartGrid30|chartGrid70);
periods = Param( "Periods", 15, 1, 200, 1 );
Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style")  );
_SECTION_END();
 

Similar threads