protected override void Initialize()
{
"Add (PeriodType.Minute, 120);"
}
protected override void OnBarUpdate()
{
"if (BarsInProgress != 0)
return;"
}
All am trying to do is add another time unit to my code and call it with BarsArray[1]
My primary period is in ticks.

Comment