Can you check this strategy code?
protected override void Initialize()
{
BarsRequired = 0;
CalculateOnBarClose = false;
}
bool fr =false;
protected override void OnBarUpdate()
{
if(!fr)
{
fr = true;
Print(CurrentBars[0]);
}
}
Is it correct behavior?

Comment