20 lines
484 B
Batchfile
20 lines
484 B
Batchfile
@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
|