Webhooks & API
Route AI trading signals directly to external platforms or custom scripts. Use webhooks to automate trade execution on exchanges like Binance, Bybit, or Tradovate.
What is a Webhook?
A webhook is a way for an app to provide other applications with real-time information. Unlike typical APIs where you need to poll for data very frequently to get it real-time, a webhook delivers data to other applications as it happens, meaning you get data immediately.
In TradingWizard, you can set up outgoing webhooks (where we send signals to your server) or configure your bots to trigger external endpoints directly.
Inbound Webhooks (From TradingView)
1. Get Your Endpoint URL
Go to the Settings panel and locate your personal Webhook URL. It typically looks like:https://tradingwizard.ai/api/webhooks/...
2. Paste in TradingView
Set an alert on any TradingView chart. Check the "Webhook URL" box and paste your unique URL. When the alert fires, TradingWizard will instantly parse and process it.
Outgoing Webhooks (Execution)
Want to trade automatically based on Bot Engine verdicts? Add an execution URL (like 3Commas, Cornix, or your custom Python server) inside the Settings > Webhooks tab.
Example JSON Payload
{
"action": "open_trade",
"symbol": "BTCUSDT",
"verdict": "strong buy",
"confidence": 89,
"entry_price": 64500.50,
"stop_loss": 62000.00,
"take_profit": 68000.00,
"timeframe": "15m",
"bot_name": "BTC Sniper "
}Next: Manage Risk Automatically
Ensure your bots don't blow up your account when volatility strikes.