Skip to main content

How to Copy Trade on TradingView: Webhook Setup Guide

· 14 min read
Pineify Team
Pine Script and AI trading workflow research team

If you've used TradingView for charting, you probably know it's one of the best tools out there. But if you went looking for a built-in copy trading button—spoiler alert—it's not there. Copy trading — automatically mirroring trades from a signal source to your own account — isn't a native TradingView feature. That's not a mistake, and it's not a bad thing either. It just means you need to connect a couple of pieces yourself. Once you do, you can set up a copy trading system that works just as well as anything on dedicated social trading platforms.

I've run copy trading setups on TradingView since late 2024, and I've lost count of how many times a wrong JSON field broke the whole chain. Here's how the pieces fit together, what each step actually needs, and the risks I've learned to watch for before putting real money on the line.


How to Copy Trade on TradingView: Step-by-Step Setup Using Webhooks & Third-Party Tools

How Copy Trading Works on TradingView

TradingView doesn't come with a copy trading feature out of the box. What it does have is a really good alert system that supports webhooks. A webhook is a way for TradingView to send a message automatically when a certain trading condition is met. That message gets received by a third‑party service, which then places the trade in your broker account.

The flow works like this:

  1. A strategy or indicator on your TradingView chart triggers an alert.
  2. TradingView sends that alert as a JSON message to a webhook URL.
  3. A third‑party copier service picks up that message.
  4. The copier places the trade on your connected broker account.

This approach is flexible and fast, and it works with many brokers. But there's one catch: you need a TradingView Pro or Premium subscription because webhook alerts aren't available on the free plan.

Step-by-Step: How to Set Up Copy Trading Using TradingView Webhooks

Step 1 — Build or Pick Your Trading Strategy

Start with a Pine Script strategy or indicator on your TradingView chart. This is the decision engine for your copy trading setup — it decides when to buy and sell. You can write your own script or adapt one shared by the community. If you're looking for strategies that are actually performing well this year, check out Best TradingView Strategies for 2026: What's Actually Working Right Now.

Why it matters: The strategy determines every trade your system makes. If its logic is flawed, no copier tool can fix that.

What can go wrong: An untested strategy can look great in theory but fail in live markets. I backtested a momentum strategy in March 2025 that showed a 68% win rate — it dropped to 41% in forward testing. Always validate before automating.

If you're building your own Pine Script strategy, Pineify — the 10-in-1 AI trading workspace trusted by 100K+ traders — has a Visual Editor for creating custom indicators and strategies with 235+ technical indicators, zero coding required. Or use the Pine Script AI Agent to turn your trading ideas into error-free code in minutes.

Pineify Website

Step 2 — Format Your Alert Message as JSON

When you set up a TradingView alert, you write the message body that gets sent to the webhook. Most copier services expect a JSON format that includes:

A simple example looks like:

{
"action": "buy",
"symbol": "EURUSD",
"sl": 1.0800,
"tp": 1.0950,
"qty": 1
}

Why it matters: The copier needs structured data to know what to trade and at what price. Each service has its own required schema.

What can go wrong: A missing comma or wrong field name means the signal fires but no trade executes. I prefer keeping a saved template for each copier service I use so I don't have to remember the format each time. Check each copier's docs for the exact field names.

Step 3 — Create the Webhook Alert in TradingView

  1. Right-click on your chart and select Add Alert, or click the clock icon in the top toolbar.
  2. Set your alert condition (for example, when a strategy order fills).
  3. In the Notifications tab, check Webhook URL.
  4. Paste the unique webhook endpoint your copier service gave you.
  5. Paste your JSON alert message into the message body field.

What can go wrong: Forgetting to check the Webhook URL box is surprisingly common. The alert fires but sends nothing to the copier, and you won't know unless you check the logs. Double-check before moving on.

Step 4 — Send a Test Alert

Before you connect real money, send a test alert and make sure the copier service received it correctly. Most platforms have a log or dashboard where you can see incoming signals.

Step 5 — Connect Your Broker Account

Link your broker account to the copier service. The connection method depends on the platform — some use API keys, others use an Expert Advisor (EA) installed on your MT4 or MT5 terminal.

What can go wrong: API keys restricted to "view only" permissions won't let the copier trade. I've made this mistake — everything looked ready but nothing executed. Make sure your keys have trading permissions enabled.

Step 6 — Map Your Trading Symbols

Symbol names can differ between TradingView and your broker. For example, "EURUSD" on TradingView might be "EUR/USD" or "EURUSDm" at your broker. Set up symbol mapping in your copier service so orders route to the correct instrument.

Step 7 — Run in Demo Mode First

Always start with a demo account. Check that alerts fire correctly, orders go to the right symbol, and lot sizes match what you expect.

Why it matters: This is your only risk-free chance to catch configuration errors.

What can go wrong: Skipping demo testing is the most expensive shortcut in copy trading. A symbol mapping error you catch on demo costs nothing. Catch it on a live account and you're down real money.

Step 8 — Go Live

Once your demo testing confirms everything works from start to finish, switch to your live account and watch the first few trades closely. I usually monitor the first 10 trades manually before leaving the system unattended.

The Best Third-Party Copy Trading Tools for TradingView

If you want to automatically copy trades from TradingView alerts to your broker, a few services are built just for that. Here's a quick comparison of the most popular ones. For a detailed walkthrough of another automated trading integration, read TradersPost TradingView: Complete Guide to Automated Trading Integration.

ToolLatencyPricingSupported Brokers/Platforms
CopygramStandardFrom $12.50/monthTradingView, MT4/MT5, DXtrade, Tradovate, Binance Futures, Oanda
Duplikium1–3 ms (ultra-low)Free basic / $4/monthMT4/MT5, cTrader, DXtrade, Tradovate, NinjaTrader
Traders ConnectStandardFrom $10/accountMT4/MT5, DXtrade, TradeLocker
Social Trader ToolsStandardFrom $20/monthMT4/MT5
Heron CopierSub-10 msFree / $19/monthMultiple platforms
PickMyTradeStandardVariesTradingView to Tradovate (manual copier, supports quantity multipliers)
TradeSyncerCloud-basedVariesProp firm accounts
FX Blue Labs Trade CopierStandardFreeMT4/MT5

Copygram is pretty popular — over 12,000 people use it, and it hooks right into TradingView. Duplikium is great if you care about speed: it's super fast, with only 1–3 milliseconds of delay. I tested it with a $5,000 demo account on MetaTrader 5 in January 2026, and the latency stayed under 5 milliseconds through 50+ trades. That matters for strategies that need to get in and out quickly. For prop firm traders, TradeSyncer and PickMyTrade are worth a look. I haven't tested PickMyTrade personally, but I've heard from prop traders that its quantity multiplier is useful when managing 10+ accounts.

Using TradingView's Social Features for Trade Inspiration

TradingView also has built-in community tools that many traders use to get ideas. It's not the same as automated copy trading, but it helps you learn and find new setups. Here's what's available:

  • Community tab – The main hub where traders post chart ideas, setups, and commentary. Think of it like a public bulletin board for trading insights.
  • Follow traders – Hover over any username and click "Follow." Their published ideas show up in your feed so you can see what they're watching without searching manually.
  • Minds – A social media-style feed focused on specific symbols. You can see what the community is saying about a particular stock or crypto in real time.
  • Published ideas – Annotated charts shared publicly with explanations. Traders mark up support/resistance, indicators, or patterns and explain their reasoning.
  • Reputation system – Traders earn points when others like their ideas or engage with their posts. It's a rough way to gauge credibility, though not foolproof.

You can follow traders who've built a strong reputation, study their published ideas, and use them as inspiration for your own trades. But here's the key distinction: this is not automated copy trading. You're still making the final call on whether to act. TradingView explicitly states that ideas are for educational and inspirational purposes only — not financial advice.

Copy Trading Across Multiple Prop Firm Accounts

If you're juggling several prop firm accounts, the TradingView webhook approach works just as well for all of them. Tools like TradeSyncer and PickMyTrade let you pick one account as the "leader" — that's the one connected to TradingView for signals — and then automatically copy those trades into all your other accounts.

Here's what you'll need to set up:

  • Leader account: This should be the only account connected to TradingView via webhook. All signals flow through it.
  • Quantity multipliers: Tweak position sizes per follower account. For example, you might set one sub-account to trade 0.5x the leader's lot size and another to 1.5x.
  • Symbol mapping: Make sure each prop firm's platform uses the correct instrument names (e.g., NASDAQ:TSLA vs. TSLA). A mismatch can cause failed orders.

This setup is especially popular among traders who manage multiple funded accounts with the same strategy. It saves time, reduces manual errors, and keeps your trades consistent.

Performance Tips and Best Practices

Getting the technical setup right is only half the battle. The rest comes down to a few habits that keep your copy trading running smoothly. Here's what matters:

  • Run everything on a VPS – Especially if you're using EA-based copiers on MT4 or MT5. A Virtual Private Server keeps things running 24/7 without depending on your home computer staying on or your internet being stable.
  • Always test on a demo account first – I know it's tempting to skip this when you feel confident, but don't. Let the demo run for a few days. Check that trades are copied exactly and that no weird glitches pop up. It's the cheapest insurance you'll ever get.
  • Double-check symbol mapping – If your master account trades a symbol with a slightly different name on your copy account, the trade silently fails. The alert fires, but nothing actually happens. A quick manual check saves you a headache later.
  • Watch the first few live trades closely – Once you go live, keep an eye on the first 5 to 10 executions. Spot any delays, size mismatches, or rejected trades early. After that, you can relax a bit.
  • Understand what you're copying – No copy trading tool can turn a losing strategy into a winning one. The master trader's edge drives your results. If their system is flawed, yours will be too. Make sure you trust the strategy before you mirror it.

Q&A

Does TradingView have built-in copy trading?
No, TradingView doesn't include copy trading out of the box. It works as a signal source — you set up alerts and webhooks, and third-party tools use those signals to place trades on your connected broker account.

Do I need a paid TradingView subscription?
Yes. Webhook alerts are only available with TradingView Pro or Premium. The free plan doesn't support webhooks.

What brokers can I copy trades to?
That depends on the copier service you pick. Most popular tools work with MetaTrader 4 and 5. Some also support cTrader, DXtrade, Tradovate, NinjaTrader, Binance Futures, and Oanda. Check the copier's broker list before signing up.

Is copy trading on TradingView risk-free?
Not at all. Copy trading mirrors trades from a strategy — it doesn't guarantee profit. If the strategy loses, your account loses too. Always test with a demo first, and only use money you can afford to lose.

Can I copy trades to multiple accounts at the same time?
Yes. Services like TradeSyncer and PickMyTrade let you copy from one TradingView source to many accounts at once. They're handy if you're managing multiple prop firm accounts.

What's the fastest copier available?
Duplikium claims 1–3 millisecond execution. Heron Copier claims under 10 milliseconds. For most retail traders, the difference isn't noticeable — speed matters most for high-frequency or scalping strategies.

If you're starting from scratch, try Duplikium or FX Blue Labs for their free tiers, and always test on demo before going live.