7a3e13a734
Full optimization system for LEGSTECH_EA_V2: - Flask + SocketIO live dashboard (dark premium UI) - MT5 process control (auto-kill, clean launch, retry) - HTML report parser (UTF-16 LE, 597 trades, metrics) - Pre-run validation and actionable error messages - Analysis engines: Reversal, TimePerfomance, EntryExit, EquityCurve - Composite scoring (Calmar-primary) - Mutation engine with knowledge_base.yaml - Validation gate: IS + Walk-Forward - Reports folder with HTML/CSV per run - Double-click launcher batch file
24 lines
763 B
Batchfile
24 lines
763 B
Batchfile
@echo off
|
|
REM ── MT5 EA Optimizer Launcher ──────────────────────────────────────────────
|
|
REM Double-click this file to start the optimizer app.
|
|
REM Browser will open automatically.
|
|
|
|
title MT5 EA Optimizer
|
|
|
|
SET PY=C:\Users\DELL\AppData\Local\Programs\Python\Python311\python.exe
|
|
SET APP=%~dp0app.py
|
|
|
|
echo.
|
|
echo =====================================================
|
|
echo MT5 EA Optimizer — Starting...
|
|
echo Your browser will open in a few seconds.
|
|
echo Do NOT close this window while optimizer is running.
|
|
echo =====================================================
|
|
echo.
|
|
|
|
"%PY%" "%APP%"
|
|
|
|
echo.
|
|
echo Optimizer stopped. Press any key to close.
|
|
pause > nul
|