[Mod] close #2126
This commit is contained in:
parent
b53a286295
commit
cb835d5932
@ -96,7 +96,10 @@ class AlgoEngine(BaseEngine):
|
|||||||
|
|
||||||
def process_timer_event(self, event: Event):
|
def process_timer_event(self, event: Event):
|
||||||
""""""
|
""""""
|
||||||
for algo in self.algos.values():
|
# Generate a list of algos first to avoid dict size change
|
||||||
|
algos = list(self.algos.values())
|
||||||
|
|
||||||
|
for algo in algos:
|
||||||
algo.update_timer()
|
algo.update_timer()
|
||||||
|
|
||||||
def process_trade_event(self, event: Event):
|
def process_trade_event(self, event: Event):
|
||||||
|
Loading…
Reference in New Issue
Block a user