设置检查限价单时间为30s

This commit is contained in:
zhiyong 2025-05-15 10:28:38 +08:00
parent e62ab751d8
commit db47776764

View File

@ -79,7 +79,7 @@ class RealTraderManager:
# 检查限价单是否超时
if hasattr(Config, "RTM_ORDER_TIMEOUT"):
try:
schedule.every(10).seconds.do(
schedule.every(30).seconds.do(
run_threaded(self.check_limit_orders)
)
except Exception as e: