For example, where a Strategy has two BarsArrays, while the Primary BarsArray is processing (BarsInProgress == 0) accessing IsFirstTickOfBar of the Secondary BarsArray? Illustrated by the below (non-functioning) snippet.
protected override void OnBarUpdate()
{
if (BarsInProgress != 0) return;
var secondaryBarsArrayFirstTickOfBar = [B]BarsArray[1].IsFirstTickOfBar[/B];
}

Comment