TradingView Integration

Connect TradingView alerts to Algrow for automated trade execution.

TradingView webhook alerts require a TradingView Pro, Pro+, or Premium subscription. The free plan does not support webhooks.

Setup Guide

1

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_TOKEN
2

Create 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).

3

Configure Webhook Notification

In the alert dialog, check "Webhook URL" under Notifications. Paste your Algrow webhook URL.

4

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.

5

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

VariableDescriptionExample
{{ticker}}Symbol nameNIFTY
{{close}}Closing price24500.50
{{strategy.order.action}}Buy or Sellbuy
{{time}}Alert timestamp2026-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.