Alerts

How to set up TradingView alerts for Smart Signals Assistant signals.

The Smart Signals Assistant supports TradingView's native alert system, allowing you to receive notifications for any signal type without watching the chart continuously.

Setting Up Alerts

Step 1: Open the Alert Dialog

  1. Right-click on the chart and select Add Alert, or click the Alert button (clock icon) in the TradingView toolbar

Opening the alert dialog via the clock icon

  1. In the Condition dropdown, select Smart Signals Assistant

Selecting the alert condition for Smart Signals Assistant

Step 2: Choose the Alert Condition

The SSA provides multiple alert conditions:

Alert ConditionTriggers When
Buy SignalA bullish entry signal appears
Sell SignalA bearish entry signal appears
Strong Buy SignalA high-confluence bullish signal appears
Strong Sell SignalA high-confluence bearish signal appears
Bullish ExitA long exit signal appears
Bearish ExitA short exit signal appears
Trend Change (Bullish)The trend direction shifts from bearish to bullish
Trend Change (Bearish)The trend direction shifts from bullish to bearish
Any SignalAny of the above conditions is met

Alert states overview

Step 3: Configure the Alert Message

You can customize the alert message to include dynamic information about the signal. TradingView supports placeholders that the SSA fills in at alert time.

See Plot Mapping for the full list of available placeholders and plot values.

Step 4: Choose Notification Channels

TradingView can deliver alerts through:

  • Pop-up notification on the TradingView website
  • Email to your registered address
  • Mobile push notification through the TradingView app
  • Webhook to an external URL (useful for automation and bot integration)
  • SMS (available on some TradingView plans)

Step 5: Set Alert Expiration

Choose how long the alert remains active:

  • Once — Triggers one time, then deactivates
  • Once per bar — Triggers at most once per candlestick
  • Once per bar close — Triggers only when the bar closes (avoids signals that repaint mid-bar)
  • Every time — Triggers every time the condition is met

Using the Any function for combined alert conditions

For the most reliable signals, use Once per bar close. This ensures the signal is confirmed at the bar's close and will not repaint.

Webhook Integration

Webhooks allow you to send alert data to external services for automated trading or logging. To set up a webhook:

  1. In the alert dialog, enable the Webhook URL option
  2. Enter the URL of your receiving service
  3. Customize the Alert message body with the data your service expects (typically JSON)

Example webhook message format:

{
  "signal": "{{strategy.order.action}}",
  "symbol": "{{ticker}}",
  "price": "{{close}}",
  "time": "{{time}}"
}

Webhook alerts require a paid TradingView plan (Essential or higher). Free accounts cannot use webhooks.

Managing Alerts

  • View active alerts — Click the clock icon in TradingView's right panel
  • Edit an alert — Click the pencil icon next to any alert
  • Pause an alert — Toggle the alert off without deleting it
  • Delete an alert — Click the trash icon

TradingView imposes limits on the number of active alerts based on your plan:

TradingView PlanActive Alert Limit
Basic (free)1
Plus20
Premium100
Ultimate400

Tips for Alert Management

  • Use descriptive alert names — Include the symbol, timeframe, and signal type (e.g., "SSA Buy - BTCUSDT 1H")
  • Set up multiple alerts — Create separate alerts for buy and sell signals so you can manage them independently
  • Combine with mobile notifications — Enable push notifications on the TradingView mobile app for time-sensitive signals
  • Use bar close alerts for accuracy — Signals confirmed at bar close are more reliable than intra-bar triggers
⌘K