diff --git a/requirements.txt b/requirements.txt index 6011d22..db65f2d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -python-binance==1.0.19 +python-binance>=1.0.28 pandas>=2.3.2 pandas-ta==0.4.71b0 python-dotenv==1.0.0 diff --git a/src/exchange.py b/src/exchange.py index d447739..37fe003 100644 --- a/src/exchange.py +++ b/src/exchange.py @@ -144,5 +144,5 @@ class BinanceFuturesClient: symbol=self.config.symbol ), ) - except BinanceAPIException as e: + except Exception as e: logger.warning(f"Algo 주문 전체 취소 실패 (무시): {e}")