mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-11 07:20:56 +00:00
- Created `scripts/manage_cloudflare.py` to get/set security levels via API. - Created `scripts/setup_cloudflare_tunnel.sh` to install `cloudflared`. - Created `config/vault.json` with user-provided Zone/Account IDs for `lengkundee01.org`. - Created `docs/CLOUDFLARE_GUIDE.md` with usage instructions. - Updated `requirements.txt` to include `requests` as a core dependency.
16 lines
644 B
Text
16 lines
644 B
Text
# Python Requirements for MQL5 Trading Automation
|
|
# Install with: pip install -r requirements.txt
|
|
|
|
# Core
|
|
flask>=3.0.0
|
|
markdown>=3.5.0
|
|
requests>=2.28.0 # For HTTP requests and API calls
|
|
|
|
# Optional: For enhanced features (uncomment if needed)
|
|
schedule>=1.1.0 # For advanced scheduling
|
|
google-generativeai>=0.3.0 # For Gemini AI integration
|
|
python-dotenv>=0.20.0 # For environment variable management
|
|
# pytz>=2022.1 # For timezone handling
|
|
# colorama>=0.4.5 # For colored terminal output (Windows)
|
|
# psutil>=5.9.0 # For advanced process management
|
|
yfinance>=0.2.0 # For fetching market data
|