Use this after you create a webhook in the portal. It shows the exact webhook URL to paste in TradingView, how to create routes, and what message to put in your TradingView alert.
Create Alert dialog – use Notifications tab for Webhook URL, Message tab for alert format.
Paste your webhook URL in the Webhook URL field.
Paste your alert format (e.g. Buy BTCUSDT Q=0.01) in the Message field.
Choose based on your TradingView alert type:
{{ticker}} and {{strategy.order.contracts}} when your strategy executes.Long {{ticker}} Q={{strategy.order.contracts}} SL=2% TP=5%
{
"action": "{{strategy.order.action}}",
"symbol": "{{ticker}}",
"quantity": {{strategy.order.contracts}},
"stop_loss": {{strategy.order.stop_loss}},
"take_profit": {{strategy.order.take_profit}}
}