Introduction
Automated trading bot system on Binance / Hyperliquid Spot, powered by OpenClaw multi-agent.
boss (you)
│ Telegram or Discord
▼
coo ← Coordinator · Routing · Human-in-the-loop
├── tech ← Trading · AI Confirm · Execute
├── ops ← Cron · Watchdog · Health check
└── finance ← Risk · PnL · Trailing stop
│
┌───────┴───────┐
▼ ▼
ta_trend ta_mean_revert ← Bot workers (Python/FastAPI)
The system runs two parallel loops:
Trading loop (driven by ops, every 5 minutes)
opsscans the market → detects signalscoosends a checklist to Telegram/Discord → boss confirms YES / NO- If YES →
techperforms a final AI analysis (EV > 25%, confidence ≥ 8) - If criteria met → places a bracket order on-chain (entry + stop-loss + take-profit simultaneously)
cooreports the result back to boss
Protection loop (driven by finance, every 1 minute)
- Moves stop-loss up following price if position is profitable ≥ trigger%
- Alerts immediately if drawdown exceeds 15%
- Sends PnL summary report at 21:00 daily
Boss is the sole decision-maker — the system never trades without confirmation.
| Agent | Role |
|---|---|
coo | Coordinator — communicates with boss via Telegram/Discord, routes tasks |
ops | Cron market scanner, infrastructure health check |
tech | AI signal confirmation (EV > 25%, confidence ≥ 8), order execution |
finance | Trailing stop, PnL reports, drawdown alerts |