Open Portal

No-Code Setup

Set up TradingView automation without any coding. Use the visual interface to create alerts and connect to MetaTrader.

Introduction

This guide shows you how to automate TradingView strategies without accessing their source code. Make sure your script is a strategy (not an indicator). If it's an indicator, use our TradeSgnl Strategy Builder instead.

One alert covers every signal

A single alert with this format handles entries, exits, and reversals for any strategy. The transition pair (e.g. flat>long, long>flat, long>short, short>flat) tells TradeSgnl which action to take, so you don't need separate alerts or extra parameters for each signal type.

Setup Instructions

Follow these steps to wire your TradingView strategy up to your TradeSgnl EA.

Create an Alert on Your Strategy. Apply your strategy to the desired chart and create an alert (Alt+A on Windows / Option+A on Mac). Select your strategy under Condition.

If you see an "Order fills only" dropdown option, select it. If you don't see this dropdown below the strategy name, skip this step and proceed to the alert message.

Order fills only option in TradingView alert setup
If available, select 'Order fills only' to trigger alerts on actual trade signals

Configure the Alert Message. The fastest way to build this message is the Syntax Generator — configure your risk, SL, TP, and any advanced features in the form, then click Custom Strategy Message to copy the single-alert version below. It uses the same transition pair ({{strategy.prev_market_position}}>{{strategy.market_position}}) that one alert needs to handle entries, exits, and reversals.

Custom Strategy Message button in the Syntax Generator
Click Custom Strategy Message in the Generator to copy the single-alert version.
Open the Syntax Generator

Paste what you copied into the alert's Message field. The format looks like this:

LicenseID,{{ticker}},{{strategy.prev_market_position}}>{{strategy.market_position}},risk=0.01
Alert message configuration in TradingView
Paste the generated message into the alert's Message field.

If you build it by hand

  • Replace LicenseID with your actual TradeSgnl license ID.
  • Use a fixed risk value (risk=0.01). TradingView placeholders cannot be used for risk.
  • {{ticker}} returns the symbol (EURUSD, BTCUSD, etc.).
  • The transition pair (e.g. flat>long, long>flat, long>short) lets one alert handle entries, exits, and reversals — the server translates it into the right action verb.

Add the Webhook URL. In the Notifications tab, check Webhook URL and paste the following URL:

https://webhook.tradesgnl.com
Webhook URL configuration in TradingView alerts
Add the webhook URL in the Notifications tab

Save the Alert. Click Create to save your alert. Your strategy will now send signals to your TradeSgnl EA.

Requirements

  • TradingView requires a paid plan (Essential or higher) to use webhooks.
  • Set up separate alerts for each symbol and timeframe you want to automate.

Best Practices

  • Start with Demo Trading. Test all strategies on demo accounts first to verify alerts, position sizing, and stop loss/take profit functionality before risking real capital.
  • Configure Alerts Properly. Use 'Once Per Bar Close' trigger, set appropriate expirations, and name alerts clearly with symbol and timeframe information.
  • Manage Risk Carefully. Always use stop losses, start with small position sizes (0.01 to 0.1 lots), and set daily/weekly loss limits in your EA configuration.
  • Select Strategies Wisely. Choose strategies with proven backtest results, favorable profit factors (above 1.5), reasonable drawdowns, and consistent performance across different market conditions.

Important Reminder

Automated trading involves risks. Never risk more than you can afford to lose and monitor your automated systems regularly.

Additional Resources

On this page