Files
kalshi-bot/launch_speed.sh

14 lines
247 B
Bash
Executable File

#!/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