TradingView Guide··5 min read

TradingView Indicator vs. Strategy — What's the Difference, and Which One Do You Need?

On TradingView, "indicator" and "strategy" are different object types with different uses. New traders confuse them and end up frustrated. A clear breakdown of what each one does and when to use which.

The Short Answer

An indicator draws on your chart and triggers alerts. It does not simulate trades.

A strategy simulates trades on historical data and produces a backtest report. It does not run alerts in the same way.

Both are written in Pine Script. Both can use the exact same logic. The difference is what TradingView lets you do with the output.

When to Use an Indicator

Use an indicator if you want:

  • Visual buy/sell markers on your chart
  • Alert push/email/webhook when a condition fires
  • Real-time signal display while you trade discretionarily
  • Lightweight overlay for confluence with your existing system

Indicators are what 90% of retail traders actually need. They give you a signal layer. You decide whether to trade it.

Wind Indicator V1.6 is an indicator, not a strategy. The reason: most traders want to *see* the signal and decide for themselves whether the broader context (news, higher timeframe, sizing) supports the trade. Strategies pretend that decision does not exist.

When to Use a Strategy

Use a strategy if you want:

  • Historical performance metrics (win rate, profit factor, max drawdown)
  • Backtest a specific entry/exit logic across years of data
  • Compare two systems with apples-to-apples accounting
  • Eventually deploy as an automated bot via webhook

Strategies are mostly a research tool. The output is a number you use to decide whether the underlying logic is worth running live as an indicator.

The Trap Beginners Fall Into

A common pattern: trader finds a strategy with a beautiful equity curve in the backtest, expects similar performance live, gets disappointed. The reasons:

  1. Slippage and fees — backtests usually understate them.
  2. Overfit parameters — the strategy was optimized on the same data it was tested on.
  3. Look-ahead bias — the strategy uses information that was not actually available at the bar close.
  4. Survivorship in symbol selection — backtested on tickers that exist now, ignoring delisted ones.

A strategy that backtests at 80% win rate and 3.0 profit factor will frequently live-trade at 65% and 1.4. That is not the strategy lying — that is the backtest lying.

How TradingView Alerts Work

For both indicators and strategies, alerts can fire on:

  • Crossing of a value
  • Custom condition (any boolean expression)
  • Once per bar close (most reliable)
  • Once per bar (fires on every tick — usually not what you want)

For automation, use webhooks. TradingView sends a JSON payload to your URL when the alert fires. From there, you can route to a broker API, Discord, Telegram, or anything else.

Wind Indicator's Setup

Wind Indicator V1.6 is delivered as an invite-only TradingView indicator. After signup, you receive direct access on your TradingView account — no Pine Editor, no copy-paste. The indicator runs on any chart, any timeframe, any market.

For alerts, the standard "Once Per Bar Close" trigger is recommended. The signal fires at the close of the bar, so live alerts and the historical markers always match — no repainting.

The Decision

If you want to trade with confirmation: indicator.

If you want to research a system before committing: strategy.

If you are unsure which: indicator. Trade it manually for 30 days. Then decide whether the logic is worth pursuing as an automated strategy.


Get invite-only Wind Indicator access → Start the 3-day trial

Want to see Wind Indicator V1.6 on your own charts?

Start your 3-day free trial