I would like to ask if it is possible to create a strategy, whith 2 diferent time bases, with the higher time frame making historical calculations for 10 days, and the small time frame only 1 day.
Imagine a strategy that have um time frame with 2304 ticks and another time frame with 1 tick, for tick to tick calculations
When I initilize the time frames, this will make the OnBarUpdate event to be called every tick, generating a lot of interrupts and extend the calculations to several seconds for each indicator using this method
I would only to make calculations on a tick to tick base on the last day, so I would like to have historical calculations of 10 days on the 2304 ticks chart and only the tick by tick calculations on the last day.
If this is not possible it is possible to change the time frames after initialization.
I could start both time frames at 2304 and then when I get something like Time[0].Day == DateTime.Now.Day, I switch the BarsInProgress 1 to one to one tick calculations?
Another other ideias to workarround are also welcome.

Comment