How to Think About Alerts, Signals, and Conditions in TradingView
In TradingView, an alert is a notification that fires when a condition you set becomes true, and a condition is just a rule like price crossing a moving average. A signal, in plain terms, is the moment that rule turns true on the chart. It helps to see them as a chain: your indicator or script defines the conditions, a condition becoming true is the signal, and an alert is how TradingView tells you about it by popup, email, or app notification. You create alerts from the alert panel by choosing a symbol, a condition, and how you want to be notified. In Pine Script, alertcondition() and alert() let a script mark exactly when its logic triggers. Alerts tell you something happened, they don't decide whether to trade or promise the move continues.
The logic behind building alert conditions, signal triggers, and plot conditions in PineScript v6 for structured trading workflows.
Key points
- A condition is a rule you define, like price crossing above a moving average, and it's either true or false at any moment.
- A signal is simply that condition turning true, the point on the chart where your rule is met.
- An alert is the notification TradingView sends when the condition fires, by popup, email, app push, or webhook.
- You set alerts from the alert panel by picking a symbol, a condition, and a delivery method.
- In Pine Script, alertcondition() and alert() let a script define exactly when it should trigger an alert.
- Alerts tell you a rule was met, they don't judge whether to act or guarantee price keeps moving.
Frequently asked questions
What's the difference between an alert and a signal in TradingView?
A signal is a condition turning true on the chart, like a crossover happening. An alert is the notification that tells you it happened. One is the event, the other is how you find out about it.
How do I set up an alert on an indicator?
Open the alert panel, choose the indicator's condition from the dropdown, set how often it should trigger, and pick how you want to be notified. Save it, and TradingView watches the chart for you even when it's closed.
Why did my alert only fire once?
Alerts can be set to trigger only once or on every bar the condition is true, depending on the option you chose when creating it. If you want repeated notifications, pick the once-per-bar option instead of once-only.
Can a TradingView alert place a trade for me?
On its own, no. An alert just notifies you. It can send a webhook to another service that then acts on it, but the alert itself only tells you a condition was met and doesn't decide anything.
Can I get a script that alerts on my own conditions without coding it?
Yes. In Agenticks, AlgoAgent can generate a Pine Script indicator with your conditions and the alert lines built in, ready to paste into TradingView. It builds the logic for you to review, and alerts are context, not trading advice.
Related on Agenticks
This content is for educational purposes only and does not constitute financial advice. Trading involves risk, including possible loss of capital.