mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-11 12:20:57 +00:00
- Python orchestrator with JSON config, logging, and monitoring - Windows batch script for simple automation - PowerShell script with scheduled task creation - Linux/WSL shell script with systemd/cron support - Detailed documentation and quick start guides - Example custom script template - Configuration file with MT5 paths - Updated .gitignore for logs and temp files Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
"description": "Startup configuration for MQL5 Trading Automation",
|
|
"version": "1.0.0",
|
|
"components": [
|
|
{
|
|
"name": "Repository Validator",
|
|
"executable": "python3",
|
|
"args": ["scripts/ci_validate_repo.py"],
|
|
"working_dir": null,
|
|
"wait_seconds": 2,
|
|
"required": false,
|
|
"platform_specific": null
|
|
},
|
|
{
|
|
"name": "MT5 Terminal (Exness)",
|
|
"executable": "C:\\Program Files\\Exness Terminal\\terminal64.exe",
|
|
"args": ["/portable"],
|
|
"working_dir": null,
|
|
"wait_seconds": 15,
|
|
"required": true,
|
|
"platform_specific": "windows"
|
|
},
|
|
{
|
|
"name": "Custom Python Script",
|
|
"executable": "python3",
|
|
"args": ["scripts/your_custom_script.py"],
|
|
"working_dir": null,
|
|
"wait_seconds": 5,
|
|
"required": false,
|
|
"platform_specific": null
|
|
}
|
|
],
|
|
"settings": {
|
|
"log_retention_days": 30,
|
|
"max_startup_retries": 3,
|
|
"startup_delay_seconds": 5
|
|
},
|
|
"mt5_paths": {
|
|
"windows": [
|
|
"C:\\Program Files\\Exness Terminal\\terminal64.exe",
|
|
"C:\\Program Files\\MetaTrader 5\\terminal64.exe",
|
|
"%APPDATA%\\MetaQuotes\\Terminal\\terminal64.exe"
|
|
],
|
|
"wsl": [
|
|
"/mnt/c/Program Files/Exness Terminal/terminal64.exe",
|
|
"/mnt/c/Program Files/MetaTrader 5/terminal64.exe"
|
|
]
|
|
},
|
|
"notifications": {
|
|
"enabled": false,
|
|
"email": "",
|
|
"webhook_url": ""
|
|
}
|
|
}
|