I have a question on the provided sample code Strategy: Using multiple entry/exit signals simultaneously
The sample places orders from a 15 min timeframe (BarsInProgress == 2) but the order seems to be placed on the Primary timeframe (BarsInProgress == 0) using the following order
[FONT=Consolas][SIZE=2][FONT=Consolas][SIZE=2] EnterLong(0, 1, [/SIZE][/FONT][/SIZE][/FONT][FONT=Consolas][SIZE=2][COLOR=#a31515][FONT=Consolas][SIZE=2][COLOR=#a31515][FONT=Consolas][SIZE=2][COLOR=#a31515]"Enter Long from 15min"[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Consolas][SIZE=2][FONT=Consolas][SIZE=2]); [/SIZE][/FONT][/SIZE][/FONT]
Additionally the exit logic is generated from the 5 minute timeframe (BarsInProgress == 1) and again places the order on the Primary timeframe. Again having to wait for a bar to close on the Primary DataSeries.
Am I incorrect in my assessment here? And if so can the Entry and Exit orders be managed from their respective DataSeries and have the orders executed on the very next ticks?
Thanks,

Comment