Markets
NodeGraph ships connectors for trading and prediction markets. These are a capability of the Worker system rather than the product's focus — connect an exchange to a Worker and it gains a unified ctx.{exchange} API for balances, orders, positions, and streaming data.
For full method lists per exchange, see the Exchange SDKs section.
Trading
| Block | Type ID | Plan | Notes |
|---|---|---|---|
| Bybit | trading.bybit | free | Spot + derivatives |
| Binance | trading.binance | free | Spot + futures (WebSocket-cached) |
| Interactive Brokers | trading.ibkr | free | Stocks, options, futures, forex (Gateway / TWS) |
| Coinbase | trading.coinbase | pro · server-only | Advanced Trade API |
| OKX | trading.okx | pro · server-only | Spot, swaps, futures |
| Kraken | trading.kraken | pro · server-only | Balance, orders, trading |
| Deribit | trading.deribit | pro · server-only | Crypto options, futures, perpetuals |
| Bitget | trading.bitget | pro | Spot + USDT perpetuals, copy-trading |
| Hyperliquid | trading.hyperliquid | pro | On-chain perpetuals DEX (EIP-712 signing) |
| IG Markets | trading.ig | pro · server-only | CFDs, forex, indices, commodities |
Prediction markets
| Block | Type ID | Plan | Description |
|---|---|---|---|
| Polymarket Monitor | prediction.polymarket_monitor | free | Public events, probabilities, trends |
| Polymarket Trader | prediction.polymarket_trader | pro | Orders, positions, P&L |
How they connect
| From | To | What happens |
|---|---|---|
| Worker | Bybit | ctx.bybit becomes available in worker code |
| Worker | any exchange | ctx.{exchange} provides balances, orders, positions, streams |
| AI Agent | an exchange | The exchange becomes a tool the model can act on |
See the Worker SDK reference for the full ctx.{exchange} method list.