I am using the standard RSI indicator AFL as below. What code do I
need
to add to draw a horizontal line at the 50% RSI
level?
Thanks.
_SECTION_BEGIN("RSI");
SetChartOptions(0,0,chartGrid30|chartGrid70);
periods
= Param( "Periods", 2, 1, 200, 1 );
Plot( RSI( periods),
_DEFAULT_NAME(), ParamColor( "Color", colorCycle
),
ParamStyle("Style") );
_SECTION_END();