Trading Venues¶
PolyBot supports multiple prediction market venues, allowing you to trade across platforms and implement cross-venue strategies.
Supported Venues¶
| Venue | Status | Type | Notes |
|---|---|---|---|
| Polymarket | Full Support | Crypto | Primary focus |
| Kalshi | Supported | Regulated | CFTC-regulated |
| Binance | Hedging | Crypto Exchange | Futures/options |
Multi-Venue Architecture¶
┌─────────────────────────────────────────┐
│ PolyBot Core │
├─────────────────────────────────────────┤
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ │
│ │Polymarket│ │ Kalshi │ │ Binance │ │
│ └─────────┘ └─────────┘ └─────────┘ │
└─────────────────────────────────────────┘
Configuration¶
Enable/disable venues in .env:
Risk Management¶
Per-venue risk limits:
Cross-Venue Strategies¶
Some strategies work across venues:
- Arbitrage: Same event, different venues
- Hedging: Prediction market + derivatives
- Diversification: Spread risk across platforms
Adding New Venues¶
Developers can add new venues by implementing the BaseVenue interface.
See Custom Venue Guide.