Understand the Execution Boundary
TradeClaw implements one native executor: Binance USDT perpetuals, with testnet as the default endpoint. The broker cards below are external API starter examples, not installed or verified native integrations.
Example Webhook Routing
An operator can configure outbound webhook delivery with optional HMAC signing. Entry-like delivery is halted unless the reproducible cost-adjusted evidence gate passes. A receiver that places orders is external code owned and secured by the operator.
// Generic broker routing pattern (Express.js)
import express from 'express';
const app = express();
app.post('/tradeclaw-webhook', (req, res) => {
const { pair, direction, confidence, entry } = req.body;
// Research-only receiver: confidence is the legacy API field name for a
// mechanical rule score out of 100, not a probability or evidence of edge.
console.log({ pair, direction, ruleScore: confidence, entry, executed: false });
res.status(202).json({ acceptedForReview: true, executed: false });
});
app.listen(3001, () => console.log('Webhook receiver running on :3001'));Native Adapter and External API Examples
These snippets are unverified starting points and omit production risk controls. They do not mean TradeClaw natively supports or has tested the listed broker.
TradeClaw native executor for Binance USDT perpetuals. Disabled by default and configured for testnet unless an operator deliberately changes it.
- Native TradeClaw adapter
- Testnet default
- Explicit credentials required
External API starter snippet. TradeClaw has no native Alpaca adapter or compatibility test.
- Not a native integration
- Not integration-tested
- Review official API docs
External API starter snippet. TradeClaw has no native OANDA adapter or compatibility test.
- Not a native integration
- Not integration-tested
- Review official API docs
External API starter snippet. TradeClaw has no native Kraken adapter or compatibility test.
- Not a native integration
- Not integration-tested
- Review official API docs
External API starter snippet. TradeClaw has no native Bybit adapter or compatibility test.
- Not a native integration
- Not integration-tested
- Review official API docs
External API starter snippet. TradeClaw has no native Interactive Brokers adapter or compatibility test.
- Not a native integration
- Not integration-tested
- Review official API docs
External API starter snippet. TradeClaw has no native Coinbase adapter or compatibility test.
- Not a native integration
- Not integration-tested
- Review official API docs
Legacy external starter snippet. TradeClaw has no native Schwab adapter; verify the current vendor API and SDK before adapting it.
- Not a native integration
- Not integration-tested
- Verify current vendor API
Configure an outbound webhook
Add an HTTPS destination and test it explicitly. Automatic entry-like delivery remains fail-closed until the evidence gate clears; broker execution remains a separate decision.