if (Close[0] > Close[1]) Print ("We had an up day");
If CalculateOnBarClose is true, isn't every single tick the "close" so that if you run this code with that option on, you don't really know if you had an up day when you're running this test as you could always wind up lower at the end of the bar?.
Now, if CalculateOnBaClose is false, you don't know when the bar has ended until you get the first tick of the next bar and then isn't Close[0] really Close[1] at that point?
As I wrote above, I'm confused.
Thanks,
Stephen

Comment