Files
Place-Order-Trading-Bot/start_dashboard_silent.bat
T

20 lines
484 B
Batchfile
Raw Normal View History

2025-12-23 11:02:35 +01:00
@echo off
REM ==========================================
REM Trading Bot Dashboard - Silent Autostart
REM Startet im Hintergrund ohne Fenster
REM ==========================================
REM Wechsel ins Bot-Verzeichnis
cd /d "%~dp0"
REM Starte Dashboard im Hintergrund (headless)
start /B pythonw -m streamlit run trading_dashboard.py --server.port 8501 --server.headless true
REM Warte 5 Sekunden
timeout /t 5 /nobreak >nul
REM Öffne Browser
start http://localhost:8501
exit