#!/bin/bash # Launch speed bot for a coin COIN="${1:-DOGE}" DRY="${2:-dry}" FLAGS="--coin $COIN" if [ "$DRY" = "live" ]; then FLAGS="$FLAGS --live" fi echo "🚀 Speed Bot: $COIN ($DRY mode)" cd ~/kalshi-bot exec python3 speed_bot.py $FLAGS