DEV Community

Cover image for How to Connect TradingView to MT5 Without Code (2026)
parrifever6999-sudo
parrifever6999-sudo

Posted on

How to Connect TradingView to MT5 Without Code (2026)

TradingView is where most of us build and backtest strategies. MetaTrader 5 is where most brokers actually execute them. Connecting the two used to mean writing a custom bridge or paying for a pricey plugin — but in 2026 you can do it in about five minutes, with no code. Here's the no-code way to connect TradingView to MT5 that I use every day for SignalForge.

You need three things: a TradingView account (Essential plan or above — free plans can't send webhooks), an MT5 broker account, and a bridge that gives you a webhook URL plus a small Expert Advisor (EA) to drop into MT5.

Step 1 — Create the alert in TradingView

Open your chart, load your Pine Script strategy or indicator, and hit Create Alert. Pick the condition that should fire — a strategy entry, a crossover, an indicator signal.

Step 2 — Add the webhook URL and the message

In the alert's Notifications tab, check Webhook URL and paste the URL your bridge gives you. Then set the alert message to a format the bridge understands.

Most bridges (SignalForge included) accept a few message formats, so your existing Pine Script keeps working without changes:

buy XAUUSD lot=0.01 sl=1500 tp=4000
Enter fullscreen mode Exit fullscreen mode

or as JSON:

{"action": "buy", "symbol": "XAUUSD", "lot": 0.01, "sl": 1500, "tp": 4000}
Enter fullscreen mode Exit fullscreen mode

Here's the alert message field in TradingView, using its built-in placeholders:

Step 3 — Attach the EA on MetaTrader 5

In MT5, drag your bridge's Expert Advisor onto a chart and paste your token in the EA inputs. The EA polls for pending signals and executes them on your broker account — no DLLs, no manual order entry.

Step 4 — Confirm it's live

Open your bridge's dashboard. Within seconds of the first TradingView alert, you should see the MT5 account connected and signals flowing.

Gotchas that bite

  • Symbol case matters. US30.cash on FTMO is not US30.CASH. Send the exact symbol string your broker recognizes or the trade fails with "symbol not found." This is the #1 setup error I see.
  • Free TradingView can't send webhooks. You need Essential ($12.95/mo) or higher for the webhook option to appear.
  • MT5 must be running. On most plans the EA lives inside your MT5 terminal, so MT5 (or a cheap VPS) needs to be up during market hours.
  • MT5, not MT4. Most modern bridges are MT5-first. If you're locked into MT4, your options narrow.

Try it

SignalForge is the $4.99/mo bridge I built for exactly this — it reads the PineConnector message format natively, so migrating takes about five minutes and a 14-day free trial (no card). See the full how to connect TradingView to MT5 walkthrough, or compare the best TradingView to MT5 bridges if you're shopping around.

If you hit a snag during setup, drop a comment — I read all of them.


Benjamin builds trading infrastructure from Alicante, Spain. He's the solo founder of SignalForge AI, a TradingView-to-MT5 bridge.

Top comments (0)