Speed bot v1: REST polling, MLX model, standardized across all infra. WebSocket WIP.

This commit is contained in:
drjones
2026-08-04 00:22:00 -07:00
parent 8ea924f965
commit 2f0e2333df
23 changed files with 285 additions and 29 deletions

13
launch_speed.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/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