K4LSH1_OPS: multi-coin LLM bot — DOGE/SOL/ETH, two-tier qwen+ornith, self-adapting

This commit is contained in:
drjones
2026-08-02 19:10:27 -07:00
commit c14bb98f7f
23 changed files with 3418 additions and 0 deletions

9
launch_all.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# K4LSH1_OPS multi-coin launcher
cd /Users/drjones/kalshi-bot
for coin in doge sol eth; do
echo "=== launching bot: $coin ==="
nohup .venv/bin/python bot.py --config /Users/drjones/kalshi-bot/$coin.json --lock $coin > /dev/null 2>&1 &
sleep 1
done
echo "all 3 bots launched"