Connect Your Broker
Route TradeClaw AI signals directly to your broker or exchange via webhook. Supports 8+ brokers across crypto, forex, stocks, and derivatives.
How Signal Routing Works
TradeClaw dispatches a signed JSON payload to your configured webhook URL. Your receiver validates the HMAC signature, then routes to your broker.
// Generic broker routing pattern (Express.js)
import express from 'express';
const app = express();
app.post('/tradeclaw-webhook', async (req, res) => {
const { pair, direction, confidence, entry } = req.body;
// Only act on high-confidence signals
if (confidence >= 75 && direction === 'BUY') {
await broker.createOrder(pair, 'market', 'buy', qty);
console.log(`[TradeClaw] BUY ${pair} @ ${entry} (conf: ${confidence}%)`);
}
res.json({ ok: true });
});
app.listen(3001, () => console.log('Webhook receiver running on :3001'));Supported Brokers & Exchanges
Binance
DocsWorld's largest crypto exchange. Spot, Futures, and Options via REST + WebSocket.
- REST + WebSocket API
- Cross-margin & isolated
- Testnet available
Alpaca
DocsCommission-free US stocks and crypto. Excellent paper trading support for strategy testing.
- Paper trading support
- Zero commissions
- Fractional shares
OANDA
DocsLeading forex & CFD broker. MT4/MT5 compatible. Perfect for TradeClaw forex signals.
- MT4/MT5 support
- REST + Streaming API
- Practice accounts
Kraken
DocsHigh-security US crypto exchange. Spot and Futures with institutional-grade reliability.
- Proof of reserves
- REST + WebSocket
- Staking support
Bybit
DocsLeading derivatives exchange with deep liquidity. Ideal for leveraged signal execution.
- Up to 100x leverage
- Unified account
- WebSocket feed
Interactive Brokers
DocsMulti-asset institutional-grade broker. Stocks, options, futures, forex — global markets.
- Global markets
- TWS API & IB Gateway
- Low margin rates
Coinbase Advanced
DocsUS-regulated crypto exchange. REST API for retail and institutional traders.
- Regulated US exchange
- Advanced Trade API
- High liquidity
TD Ameritrade / Schwab
DocsUS equities powerhouse. thinkorswim platform API for stocks, ETFs, and options.
- thinkorswim API
- Merged with Schwab
- Institutional tools
Ready to connect your broker?
Set up a webhook in TradeClaw settings, paste your endpoint, and start routing signals in minutes.