Configure your TradingView alert to send signals to your account.
Step 1
Your Personal Webhook URL
This URL is unique to your account. Do not share it.
Step 2
TradingView Alert Message
In TradingView → Create Alert → Notifications → Webhook URL (paste Step 1 URL)
Set the Message field to:
{
"action": "BUY",
"symbol": "NIFTY",
"qty": 50,
"order_type": "MARKET"
}
For SELL / exit signal:
{
"action": "SELL",
"symbol": "NIFTY",
"qty": 50,
"order_type": "MARKET"
}
Step 3
Signal Fields Reference
| Field |
Values |
Notes |
| action |
BUY / SELL / EXIT |
Required |
| qty |
Integer (e.g. 50) |
Exact quantity. NIFTY lot=50, BANKNIFTY lot=15 |
| order_type |
MARKET / LIMIT |
Default: MARKET |
| price |
Float (e.g. 22500.5) |
Only for LIMIT orders |
| security_id |
String (e.g. "13") |
Optional. Default 13 (NIFTY) |