I'm working on a strategy that load many instruments(~100) and do some checking to enter a position on bar close in OnBarUpdate().
I want to do the check only once so I have:
if (BarsInProgress != 0)
return;
I hope I made my question clear :-)
Tx in advance!

Comment