53 lines
1.3 KiB
Batchfile
53 lines
1.3 KiB
Batchfile
@echo off
|
|
REM Schnellstart-Script für Trading Bot
|
|
|
|
echo ========================================
|
|
echo Trading Bot - Schnellstart
|
|
echo ========================================
|
|
echo.
|
|
|
|
REM Aktiviere virtuelle Umgebung
|
|
if exist "venv\Scripts\activate.bat" (
|
|
call venv\Scripts\activate.bat
|
|
echo [OK] Virtuelle Umgebung aktiviert
|
|
) else (
|
|
echo [WARNUNG] Virtuelle Umgebung nicht gefunden!
|
|
echo Bitte führen Sie zuerst setup.bat aus.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo.
|
|
echo Was möchten Sie starten?
|
|
echo.
|
|
echo [1] Jupyter Notebook (Haupt-Bot)
|
|
echo [2] Trading Dashboard (Streamlit)
|
|
echo [3] GUI (Tkinter Desktop App)
|
|
echo [4] Nur virtuelle Umgebung (Shell)
|
|
echo.
|
|
|
|
set /p choice="Ihre Wahl (1-4): "
|
|
|
|
if "%choice%"=="1" (
|
|
echo.
|
|
echo [INFO] Starte Jupyter Notebook...
|
|
jupyter notebook TradingBot_V1.6_Adaptive_Complete_CORRECTED.ipynb
|
|
) else if "%choice%"=="2" (
|
|
echo.
|
|
echo [INFO] Starte Trading Dashboard...
|
|
streamlit run trading_dashboard.py
|
|
) else if "%choice%"=="3" (
|
|
echo.
|
|
echo [INFO] Starte GUI...
|
|
python trading_bot_gui.py
|
|
) else if "%choice%"=="4" (
|
|
echo.
|
|
echo [INFO] Virtuelle Umgebung aktiviert
|
|
echo Sie können jetzt Befehle ausführen.
|
|
cmd /k
|
|
) else (
|
|
echo [FEHLER] Ungültige Auswahl!
|
|
pause
|
|
exit /b 1
|
|
)
|