if (BarsInProgress == 0)
if (Times[1][0] != PrevTimes && Time[0] >= Times[1][0])
{
// do entry logic
PrevTimes = Times[1][0];
}
}
What is the best practice for determining when a lower timeframe primary bar is printing at the same time as a higher timeframe secondary bar for the purposes of placing trades on the primary timeframe without waiting for the next primary bar to print?
Thanks,
Whitmark

Comment