My algorithm has a Minute Resolution. It uses various timeframes and indicators, including a 200-day MA, with the help of consolidators. It works correctly when I use SetWarmUp(100000). On backtests, everything is fine. But when I try to start Live trading (IB Brokers), I get an error:

"Runtime Error: Algorithm took longer than 10 minutes on a single time loop. CurrentTimeStepElapsed: 10.0 minutes Stack Trace: System.TimeoutException: Algorithm took longer than 10 minutes on a single time loop. "

The error disappears only when I use SetWarmUp(25000) to a maximum of 25,000. But this way I get the wrong indicator values.
Are there any restrictions on Live trading?
How can I extend the Warming period for Live Trading? It would be great to find a solution that allows me to not change the resolution.

Thanks

Author