@echo off TITLE Kronos AI Trading Terminal v6.0 COLOR 0B echo ==================================================== echo KRONOS AI TRADING TERMINAL - STARTUP echo ==================================================== echo [1/3] Preparing launcher... :: Check if virtual environment exists if not exist "venv\" ( echo [ERROR] Virtual environment 'venv' not found. echo Please create it using: python -m venv venv pause exit /b ) echo [2/3] Activating Virtual Environment... call venv\Scripts\activate echo [3/3] Launching AI Trading Terminal... echo [INFO] Application will open in your browser automatically. echo [INFO] Press CTRL+C in this window to stop the server. :: Run the app with dynamic port selection python -m backend.launcher if %ERRORLEVEL% neq 0 ( echo. echo [ERROR] Backend failed to start. pause )