I have this condition: Calculating on Ticks. Four time frames all on the same instrument. The instrument is taken from the chart as the Primary Bars Object, (BarsArray[0]). Say this is 100 ticks.
I have a secondary BarsArray[1] which is 20 ticks and another BarsArray[2] which is 500 ticks. I have order decision logic operating to time the order placement based partly on the 20 Tick Time Frame.
What does that statement imply in my situation?
- Does it mean that I have to place orders only when BarsInProgress == 0 (primary)
- or when BarsInProgress == 1
- or does it matter.

Comment