Files
gogo2/scripts/start_live_trading.ps1
Dobromir Popov 56e857435c cleanup
2025-09-08 13:41:22 +03:00

14 lines
574 B
PowerShell

# PowerShell script to start live trading demo and TensorBoard
Write-Host "Starting Trading Bot Live Demo..." -ForegroundColor Green
# Create a new PowerShell window for TensorBoard
Start-Process powershell -ArgumentList "-Command python run_tensorboard.py" -WindowStyle Normal
# Wait a moment for TensorBoard to start
Write-Host "Starting TensorBoard... Please wait" -ForegroundColor Yellow
Start-Sleep -Seconds 5
# Start the live trading system in the current window
Write-Host "Starting Live Trading System..." -ForegroundColor Green
python main_clean.py --port 8051