In coding my strategy I wanna add an 50mins RSI to the chart, and I did the following code:
protected override void Initialize()
{
Add(PeriodType.Minute,50);
Add(HiLoActivator(length));
Add(MyDM(dMPeriod));
Add(RSI(BarsArray[1],rSIPeriod,rSISmooth));
CalculateOnBarClose = true;
}
And when I delete the following line:
Add(RSI(BarsArray[1],rSIPeriod,rSISmooth));

Comment