RSI value on charts left side

pareshR

Well-Known Member
#1
Hi

pls find bellow RSI AFL..
i do not require RSI Line.. but need only RSI value on charts left /right side

thx



_SECTION_BEGIN("RSI");
SetChartOptions(0,0,chartGrid30|chartGrid70);
periods = Param( "Periods", 14, 1, 200, 1 );
Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorGold), ParamStyle("Style") );
_SECTION_END();
 
#2
Hi

pls find bellow RSI AFL..
i do not require RSI Line.. but need only RSI value on charts left /right side

thx



_SECTION_BEGIN("RSI");
SetChartOptions(0,0,chartGrid30|chartGrid70);
periods = Param( "Periods", 14, 1, 200, 1 );
Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorGold), ParamStyle("Style") );
_SECTION_END();
Try plotting Rsi in white color ie replacing ParamColor( "Color", colorGold) with colorwhite.
 

Similar threads