82eca84230
Live trading optimizations (cumulative: $2,807 net, 81.8% WR, Sharpe 3.97): - #28B: Smart breakeven locks profit at entry + 0.5x ATR instead of fixed $2 - #31B: H1 Price vs EMA20 filter — BUY only when H1 bullish, SELL only when bearish Backtests #26-#32 (7 scripts testing sell improvement, regime-aware entry, confluence scoring, dynamic RR, multi-TF H1, and ML exit optimizer). Winners: #28B (+$229), #31B (+$343). Failed: #26, #27, #29, #30, #32. Also includes: web dashboard redesign, Docker setup, startup scripts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
65 lines
1.5 KiB
Batchfile
65 lines
1.5 KiB
Batchfile
@echo off
|
|
REM Add Dashboard & API to existing Docker setup
|
|
|
|
echo.
|
|
echo ========================================
|
|
echo Adding Dashboard to Existing Setup
|
|
echo ========================================
|
|
echo.
|
|
|
|
REM Check if .env exists
|
|
if not exist .env (
|
|
echo WARNING: .env file not found!
|
|
echo Creating .env from template...
|
|
copy .env.docker.example .env
|
|
echo.
|
|
echo Please edit .env with your MT5 credentials:
|
|
echo - MT5_LOGIN
|
|
echo - MT5_PASSWORD
|
|
echo - MT5_SERVER
|
|
echo - MT5_PATH
|
|
echo.
|
|
pause
|
|
)
|
|
|
|
REM Check if Docker is running
|
|
docker info >nul 2>&1
|
|
if errorlevel 1 (
|
|
echo ERROR: Docker is not running!
|
|
echo Please start Docker Desktop and try again.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo [1/4] Checking existing services...
|
|
docker ps --filter "name=trading_bot_db" --format "table {{.Names}}\t{{.Status}}"
|
|
|
|
echo.
|
|
echo [2/4] Building new services API and Dashboard...
|
|
docker-compose build trading-api dashboard
|
|
|
|
echo.
|
|
echo [3/4] Starting new services...
|
|
docker-compose up -d trading-api dashboard
|
|
|
|
echo.
|
|
echo [4/4] Checking all services...
|
|
docker-compose ps
|
|
|
|
echo.
|
|
echo ========================================
|
|
echo Dashboard Added Successfully!
|
|
echo ========================================
|
|
echo.
|
|
echo Access Points:
|
|
echo Dashboard: http://localhost:3000
|
|
echo API: http://localhost:8000
|
|
echo API Docs: http://localhost:8000/docs
|
|
echo Database: localhost:5432 (already running)
|
|
echo.
|
|
echo View logs:
|
|
echo docker-compose logs -f dashboard
|
|
echo docker-compose logs -f trading-api
|
|
echo.
|
|
pause
|