Hello,
I have just put the ROC() indicator on a chart and it shows up as RSI()
instead.
This is what the ROC code in the indicator folder say:-
_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();
Obviously RSI code.
Does anyone know what the code should actually be?
I tried changing the RSI part to ROC but just puts a line across the chart at
zero.
Thanks for any help.