MQL5-Google-Onedrive/config/startup_config.json
copilot-swe-agent[bot] e118b2ce34 Add comprehensive automation startup scripts for Windows, Linux, and WSL
- 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>
2026-01-06 04:21:36 +00:00

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": ""
}
}