External strategies
Satellite trading projects that stream fills, denies, and heartbeats into this dashboard. Each row shows whether the strategy is currently live, its venue, allocated capital, and its self-reported P&L.
Registered
Loading…
How to integrate
- Register once on bot startup:
POST /api/external/strategies { "strategy_id": "autocrypto-shortvol", "name": "Autocrypto Short-Vol", "kind": "crypto-perp", "venue": "bitunix", "capital_usd": 20000 } - Heartbeat every ~60s with current state:
POST /api/external/heartbeat { "strategy_id": "autocrypto-shortvol", "metrics": { "open_positions": 3, "todays_pnl_usd": 42.50, "cumulative_pnl_usd": 1280.10 } } - Stream events when fills / denies / halts happen:
POST /api/external/event { "strategy_id": "autocrypto-shortvol", "event_type": "fill", "body": { "symbol": "BTCUSDT.P", "side": "buy", "qty": 0.5, "price": 64210.50, "pnl_usd": 12.40 } }
Auth: Authorization: Bearer $FUND_INGEST_TOKEN header. From localhost, the header is optional. See audit timeline for the full event stream as it arrives.