2026-01-06 04:21:36 +00:00
|
|
|
# Python Requirements for MQL5 Trading Automation
|
|
|
|
|
# Install with: pip install -r requirements.txt
|
|
|
|
|
|
2026-01-18 22:52:05 +00:00
|
|
|
# Core
|
|
|
|
|
flask>=3.0.0
|
|
|
|
|
markdown>=3.5.0
|
2026-01-25 02:59:06 +00:00
|
|
|
requests>=2.28.0 # For HTTP requests and API calls
|
2026-01-06 04:21:36 +00:00
|
|
|
|
|
|
|
|
# Optional: For enhanced features (uncomment if needed)
|
2026-01-22 19:36:23 +00:00
|
|
|
schedule>=1.1.0 # For advanced scheduling
|
|
|
|
|
google-generativeai>=0.3.0 # For Gemini AI integration
|
2026-01-23 19:50:48 +00:00
|
|
|
python-dotenv>=0.20.0 # For environment variable management
|
2026-01-06 04:21:36 +00:00
|
|
|
# pytz>=2022.1 # For timezone handling
|
|
|
|
|
# colorama>=0.4.5 # For colored terminal output (Windows)
|
|
|
|
|
# psutil>=5.9.0 # For advanced process management
|
2026-01-23 19:50:48 +00:00
|
|
|
yfinance>=0.2.0 # For fetching market data
|