From b4a03a8e3396cc81a0e016c37a99c54274856ecc Mon Sep 17 00:00:00 2001 From: guopengfa Date: Sat, 17 Jan 2026 01:11:58 +0800 Subject: [PATCH] recovery decide_interval --- backend_api_python/app/services/trading_executor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend_api_python/app/services/trading_executor.py b/backend_api_python/app/services/trading_executor.py index 9f8745f..644ffd9 100644 --- a/backend_api_python/app/services/trading_executor.py +++ b/backend_api_python/app/services/trading_executor.py @@ -1093,7 +1093,8 @@ class TradingExecutor: market='Crypto', symbol=symbol, timeframe=timeframe, - limit=limit + limit=limit, + before_time=int(time.time()) ) except Exception as e: logger.error(f"Failed to fetch K-lines: {str(e)}")