Help Center › TradingView
Set up TradingView webhook automation
Turn any TradingView alert or strategy into an automated order in about two minutes.
- Open Dashboard → TradingView Bot and copy your personal webhook URL
- In TradingView create an alert → Notifications tab → enable Webhook URL and paste it
- Paste this JSON into the alert Message field:
{
"symbol": "{{ticker}}",
"action": "{{strategy.order.action}}",
"entry": "{{close}}",
"sl": "{{plot_0}}",
"tp": "{{plot_1}}",
"exchange": "bybit",
"leverage": 10
}
- Click Send Test Signal on the dashboard to verify, then save your alert — you're live
🛡️
Signals are verified against your risk rules before execution, and your API keys are trade-only — withdrawal access is technically impossible.
⚠️
Duplicate protection: identical signals arriving within 10 seconds are ignored automatically (TradingView sometimes retries).
Next: test strategies safely with the demo webhook URL.