We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d119eec commit ec3ca48Copy full SHA for ec3ca48
nautilus_trader/trading/trader.py
@@ -243,13 +243,13 @@ def exec_algorithm_states(self) -> dict[ExecAlgorithmId, str]:
243
# -- ACTION IMPLEMENTATIONS -----------------------------------------------------------------------
244
245
def _start(self) -> None:
246
- for actor in self._actors.values():
+ for actor in list(self._actors.values()):
247
actor.start()
248
249
- for strategy in self._strategies.values():
+ for strategy in list(self._strategies.values()):
250
strategy.start()
251
252
- for exec_algorithm in self._exec_algorithms.values():
+ for exec_algorithm in list(self._exec_algorithms.values()):
253
exec_algorithm.start()
254
255
def _stop(self) -> None:
0 commit comments