- Fix database.py: Add DatabaseConnection alias for backward compat - Fix train_symbol_timeframe_models.py: Use PostgreSQLConnection + native queries - Fix run_oos_backtest.py: Fix broken import + add dynamic OOS support - Update data_splitter.py: split_dynamic_oos() method (from previous session) - Update validation_oos.yaml: Dynamic OOS config + all 6 symbols enabled - Create ingest_ohlcv_polygon.py: Standalone Polygon→PostgreSQL ingestion script - Fix .gitignore: /data/ instead of data/ to not ignore src/data/ - Add untracked src/ modules: backtesting, data, llm, models (attention/metamodel/strategies) - Add aiohttp, sqlalchemy, psycopg2-binary to requirements.txt Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
50 lines
733 B
Plaintext
50 lines
733 B
Plaintext
# Core ML dependencies
|
|
numpy>=1.24.0
|
|
pandas>=2.0.0
|
|
scikit-learn>=1.3.0
|
|
scipy>=1.11.0
|
|
|
|
# Deep Learning
|
|
torch>=2.0.0
|
|
torchvision>=0.15.0
|
|
einops>=0.7.0 # Tensor operations for attention models
|
|
|
|
# XGBoost with CUDA support
|
|
xgboost>=2.0.0
|
|
|
|
# API & Web
|
|
fastapi>=0.104.0
|
|
uvicorn>=0.24.0
|
|
websockets>=12.0
|
|
pydantic>=2.0.0
|
|
python-multipart>=0.0.6
|
|
aiohttp>=3.9.0
|
|
|
|
# Data processing
|
|
pyarrow>=14.0.0
|
|
tables>=3.9.0
|
|
|
|
# Logging & Monitoring
|
|
loguru>=0.7.0
|
|
python-json-logger>=2.0.7
|
|
|
|
# Configuration
|
|
pyyaml>=6.0
|
|
python-dotenv>=1.0.0
|
|
|
|
# Database
|
|
pymongo>=4.6.0
|
|
motor>=3.3.0
|
|
sqlalchemy>=2.0.0
|
|
psycopg2-binary>=2.9.0
|
|
|
|
# Utilities
|
|
python-dateutil>=2.8.2
|
|
tqdm>=4.66.0
|
|
joblib>=1.3.2
|
|
|
|
# Testing (optional)
|
|
pytest>=7.4.0
|
|
pytest-asyncio>=0.21.0
|
|
httpx>=0.25.0
|