TradingView Integration
Connect TradingView alerts to Algrow for automated trade execution.
Setup Guide
Get Your Webhook URL
Log in to Algrow and go to Signals in the sidebar. Copy your unique webhook URL. It looks like:
https://api.algrow.biz/api/signals/webhook?token=YOUR_TOKENCreate an Alert in TradingView
In TradingView, open the chart for your instrument. Click the "Alert" button (alarm clock icon) or press Alt+A. Configure your alert condition (e.g., RSI crosses above 70).
Configure Webhook Notification
In the alert dialog, check "Webhook URL" under Notifications. Paste your Algrow webhook URL.
Set the Alert Message (JSON Payload)
In the "Message" field, enter a JSON payload that Algrow can parse:
{
"symbol": "{{ticker}}",
"action": "{{strategy.order.action}}",
"quantity": 50,
"price": {{close}},
"order_type": "market"
}TradingView variables like {{ticker}} and {{close}} are automatically replaced when the alert fires.
Save and Test
Save the alert. To test, you can trigger the condition manually or wait for market conditions to match. Check the Signals page in Algrow to confirm the signal was received.
Supported TradingView Variables
| Variable | Description | Example |
|---|---|---|
{{ticker}} | Symbol name | NIFTY |
{{close}} | Closing price | 24500.50 |
{{strategy.order.action}} | Buy or Sell | buy |
{{time}} | Alert timestamp | 2026-02-26T09:30:00Z |
Troubleshooting
Signal Not Received
Ensure your TradingView plan supports webhooks (Pro or higher). Check that the webhook URL is exactly correct with no extra spaces.
Invalid Payload
Make sure the JSON in the alert message is valid. Common issues: missing quotes around string values, trailing commas, or TradingView variables not resolving properly.