-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
70 lines (55 loc) · 1.79 KB
/
Copy pathrequirements.txt
File metadata and controls
70 lines (55 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# ============================================================
# Multi-Agent Forex Trading System — Requirements
# ============================================================
# Data & Market
yfinance>=0.2.36
pandas>=2.2.0
numpy>=1.26.0
ta>=0.11.0 # Technical Analysis (EMA, RSI, MACD, ATR)
# HTTP & Async
requests>=2.31.0
aiohttp>=3.9.0
httpx>=0.27.0
# Broker Adapters
oandapyV20>=0.6.3 # OANDA REST v20
# MetaTrader5>=5.0.45 # MT5 — Windows only, uncomment if using MT5
# ib_insync>=0.9.86 # Interactive Brokers — uncomment if needed
# Database
sqlalchemy>=2.0.28
alembic>=1.13.0
# Config & Secrets
python-dotenv>=1.0.1
pydantic>=2.6.0
pydantic-settings>=2.2.0
# Scheduling
schedule>=1.2.1
apscheduler>=3.10.4
# CLI & Dashboard
rich>=13.7.0
click>=8.1.7
# Telegram Alerts (optional)
python-telegram-bot>=21.0
# Security
cryptography>=42.0.0
# API Server
fastapi>=0.115.0
uvicorn[standard]>=0.32.0
websockets>=13.0
# Testing
pytest>=8.0.0
pytest-asyncio>=0.23.0
# Utilities
python-dateutil>=2.9.0
pytz>=2024.1
# ─── Optional: ML predictive agent ────────────────────────
# Install only if you want the ML agent active. Falls back to neutral if missing.
xgboost>=2.0.0
scikit-learn>=1.4.0
joblib>=1.3.0
# torch>=2.2.0 # uncomment for LSTM head (heavy install)
# ─── Optional: Social sentiment ───────────────────────────
vaderSentiment>=3.3.2
praw>=7.7.1 # Reddit official API client
# ─── Optional: Royalty on-chain transfers (LIVE mode) ─────
web3>=6.15.0 # EVM-chain transfers for commercial-license royalty
eth-account>=0.11.0