← Back to Knowledge Base

Alerts & Notifications

Webhook Integrations

Webhooks let you connect SignalViper alerts to external services for automation, logging, or integration with trading bots.

What Are Webhooks?

A webhook is an HTTP request sent to a URL you specify whenever an alert triggers. This allows you to connect TradingView alerts to virtually any external service.

Setting Up Webhooks

  1. Create an alert on any SignalViper indicator
  2. In the alert dialog, scroll to "Notifications"
  3. Check "Webhook URL"
  4. Enter your webhook endpoint URL
  5. Customize the message payload in the "Message" field using JSON format

Message Formatting

You can send custom JSON payloads. Example:

{
  "symbol": "{{ticker}}",
  "price": "{{close}}",
  "signal": "BUY",
  "time": "{{time}}"
}

Common Use Cases

  • Discord/Telegram Bots - Send alerts to chat channels
  • Trading Bots - Trigger automated trade execution
  • Logging Services - Record all signals for analysis
  • Custom Dashboards - Display alerts in your own interface

Requirements

Webhook alerts require a TradingView Pro plan or higher. Free accounts cannot use webhook functionality.

Security Note

Keep your webhook URLs private. Anyone with your webhook URL could potentially send fake data to your endpoint.

Need more help with this topic?