Yes — but not by itself. TradingView does not place orders on MetaTrader 5. There is no official “connect to MT5” button in TradingView. You need a bridge: something that turns a TradingView alert into an MT5 order at your broker.
The three ways people connect them
- Webhook + cloud bridge (PineConnector and similar) — TradingView POSTs the alert to the internet; their servers talk to MT5. Needs a TradingView plan with webhooks, plus a monthly bridge.
- Webhook + your own script — same URL field, you write the listener. Still needs webhooks. You maintain the server.
- Local capture + Expert Advisor — a Windows app watches TradingView on the PC and an EA on MT5 reads a local queue. This is TradingView Bridge. No webhook URL.
Local setup (about 10 minutes)
- Windows 10/11 PC or Windows VPS with MT5 installed from your broker or prop firm.
- Install TradingView Bridge and leave it running.
- Install
TradingViewTradeAutomation.ex5(bridge Settings → MetaTrader EA installer, or copy intoMQL5/Experts). - Attach the expert to a chart, enable Algo Trading.
- Sign in to TradingView inside the bridge window.
- On demo, fire a test alert such as
buy,EURUSD,vol_lots=0.01or a plain-English line like “Buy on EURUSD with 10 pips SL and 40 pips TP.” - Confirm the order in MT5. Then map symbols if your broker uses
EURUSDmorGOLD.
What does not work
- Opening TradingView in Chrome and hoping MT5 “sees” it — it will not, unless a bridge is capturing alerts.
- MetaTrader for Mac with this EA — the experts are Windows MT4/MT5.
- TradingView’s broker integrations that are not your MT5 account. Those are separate products.
Full click-path: how to connect TradingView to MT4 and MT5. If you specifically do not want webhooks: without webhooks. Dedicated MT4: TradingView to MT4.