if (BarsInProgress != 0)
{
return;
}
//Only process if bar being updated is our 1st bar.
if (BarsInProgress == 1)
{
Print("This should not be seen");
}
------------------
How come I can see the print statement above? I thought my first if() was going to return if true?
What am I missing ??
[UPDATE]
Something was flaky. I just shutdown Ninja, re-opened, and it seems to be processing correctly. Weird.
Thank you,
r2kTrader

Comment