Skip to main content

%B RSI Indicator for Amibroker (AFL)

jarjis_sk over 16 years ago Amibroker (AFL)

  • Rating:
    4 / 5 (Votes 2)
  • Tags:

%B RSI indicator with adjustable parameters.

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("%B RSI");
P = ParamField("Price field",-1);
Periods = Param("Periods", 17, 2, 100, 1 );
Width = Param("Width", 2, 0, 10, 0.05 );
//Color = ParamColor("Color", colorCycle );
//Style = ParamStyle("Style");
//Plot( BBandTop( P, Periods, Width ), "BBTop" + _PARAM_VALUES(), Color, Style ); 
//Plot( BBandBot( P, Periods, Width ), "BBBot" + _PARAM_VALUES(), Color, Style );
BandWidthRSI = BBandTop(RSI(17), Periods, Width) - BBandBot(RSI(17),Periods, Width);
bRSI =(RSI(17) - BBandBot(RSI(17), Periods, Width)) / BandWidthRSI;
Plot( bRSI, "%b of RSI", colorRed);
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.