10 lines
293 B
Bash
Executable File
10 lines
293 B
Bash
Executable File
#!/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"
|