feat: Introduce new modules for technical analysis, Polymarket API, and statistical models, while enhancing bot resilience and refining market data processing with advanced filtering.

This commit is contained in:
2569718930@qq.com
2026-02-06 22:47:16 +08:00
parent 7d733a7ae8
commit e0d759819c
5 changed files with 110 additions and 60 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ try:
HAS_STATSMODELS = True
except ImportError:
HAS_STATSMODELS = False
logger.warning("statsmodels not installed, ARIMA model unavailable")
logger.debug("statsmodels not installed, ARIMA model unavailable")
try:
from sklearn.ensemble import RandomForestRegressor
@@ -17,7 +17,7 @@ try:
HAS_SKLEARN = True
except ImportError:
HAS_SKLEARN = False
logger.warning("scikit-learn not installed, ML models unavailable")
logger.debug("scikit-learn not installed, ML models unavailable")
class TemperaturePredictor: