I'm building a strategy that use 5 minute data and EOD data.
Base on a calculation of the EOD data I decide if to use the 5 minute data.
5 minute is BIP==1 and EOD is BIP==2.
I'm running my strategy as a backtest for now and if I'm trying to get the last data out of the EOD(The current night) I need to wait for the open of the day after so I get a new 5 minute bar.
I want to be able to get triggered also in the end of the day.
I know that NT is event driven so the CalculateOnBarClose() will only be triggered when a new tick arrive, but is there a way to solve it?
My strategy is for US stocks and I'm using latest NT version with Kinetick real time data.
I hope I made my question clear :-)
TX in advance!!!

Comment