The attached backtest uses DAY resolution, and when I step through the debuggers the simplified method calling sequence is (Selection -> Coarse -> Fine -> Update).

However, when I switched the entire algo to MINUTE resolutioon (I don't know how to attach two backtests in the same post). the simplified method calling sequence is (Selection -> Update -> Coarse -> Fine).

In my case, I actually want Coarse -> Fine step happening before Update. How can I achieve the same behavior as in DAY resolution? Thanks!