The master account buys 0.50 lots of gold. Four hundred milliseconds later the follower account, sitting on a different balance at a different broker with a symbol named XAUUSD.m, receives an instruction to buy something. What exactly it buys, at what price, and whether the stop loss travels with it are all decisions the copier made in that gap. Understanding those decisions is the difference between a working setup and an account that quietly runs three times the intended risk.
The four problems a copier has to solve
Order replication looks trivial and is not. A copier has to detect a new position on the source account, translate the instrument name to whatever the destination broker calls it, calculate a size appropriate to the destination account, and send an order. Then it has to keep tracking: partial closes, stop and target modifications, and the final close all have to propagate, and each of them can fail independently.
The second problem is state. If the copier restarts mid-session, does it adopt positions already open on the master, ignore them, or try to open them late at a worse price? Any of the three can be correct; a copier that does not tell you which one it does is a copier you cannot rely on. The third is failure handling: what happens when a destination order is rejected for insufficient margin. The fourth is reconciliation, meaning a periodic check that the two accounts actually hold what they are supposed to hold rather than an assumption that every message landed.
Where the copier runs
Local bridges are two platform terminals on one machine, with an expert advisor writing to a shared file or memory. They are cheap and fast within that machine, and they die whenever the machine does, which is why they usually end up on a VPS near the broker's servers.
Cloud copiers connect to accounts over a broker API or a hosted terminal and route signals through the provider's infrastructure. They survive your laptop closing, add a network hop, and put a third party between your accounts. Server-side copying, where the broker or prop firm operates the copier inside its own platform, is the fastest and least flexible, and it only exists if the firm offers it. This is also how PAMM and MAM structures allocate, though those are account structures with a legal wrapper rather than a bolt-on tool.
Sizing is where accounts get hurt
Every copier offers several ways to translate the master's size into yours. They are not equivalent.
- Fixed lot. Every copied trade opens the same size regardless of what the master did. Simple, and it destroys the relationship between the master's risk decisions and yours.
- Multiplier. The master's size times a constant. Fine while balances stay in proportion, wrong the moment one account grows and the other does not.
- Equity proportional. Size scaled by the ratio of the two account equities, so a follower with half the equity takes half the size. This keeps percentage risk aligned as balances change and is the sane default.
- Risk based. Size derived from the distance to the copied stop loss and a target percentage of the follower's equity. The most precise option, and useless on trades that arrive without a stop.
Whichever mode is chosen, two limits belong on top of it: a maximum lot per trade and a maximum aggregate exposure per instrument. A sizing formula has no opinion about whether the master has just done something reckless, which is why the follower's own risk rules have to exist independently of the signal.
Copying does not transfer skill and does not reduce risk. The follower carries the full loss of every mirrored trade, including the ones the master would have managed differently by hand. Leveraged trading can cost the entire balance.
Why the two equity curves never match
Traders copying a public account often expect their curve to track the published one. It will not, and the reasons are mechanical. Latency means the follower fills after the master, which on fast entries is a measurable cost in slippage. Spreads and commissions differ between brokers, so an identical trade nets differently. Swap rates differ, which shows up on anything held overnight.
Lot rounding adds another wedge: a proportional size of 0.037 becomes 0.04 or 0.03 depending on the minimum step, and the error compounds across hundreds of trades. Rejected orders create the worst divergence, because the follower ends up holding one leg of a structure the master closed. Over a few months, the accumulated difference between the two curves is usually much larger than newcomers expect, and it runs in the follower's disfavour more often than not. Anyone assessing a signal source should read how to evaluate a signal service before wiring capital to it.
The rules copying can breach
Three rule sets catch people. Prop firm agreements are the most common: many firms allow a trader to copy between their own accounts but forbid copying a single signal across accounts held by different people, because that concentrates identical exposure the firm has to manage. Enforcement is usually account termination rather than a warning, and the detection is straightforward when a dozen accounts open the same trade in the same second. The detail belongs in the funded account rules a trader accepts at sign-up.
Broker terms are the second. Some prohibit third-party software that places orders on an account, others require disclosure. The third is regulatory, and it applies to the person running the master rather than the follower. Charging for a signal that others copy automatically can look like portfolio management or investment advice in several jurisdictions, with authorisation requirements attached. A trader who starts a paid copy service without checking has usually created a licensing problem before the first payment clears.
What to check before you connect anything
Run the pairing on a demo destination for a full week first, including a session with news in it, and compare fills rather than outcomes. Confirm symbol mapping on every instrument the master trades, not the two you tested. Check whether stops and targets copy, and what happens if the master moves them. Force a disconnect deliberately and watch what the copier does when it comes back. Set the lot cap before the multiplier, not after.
None of this is exciting, and all of it is cheaper than discovering the answers on a live account during a volatile Friday afternoon.
"Show me the copier's reconnect behaviour and I can tell you whether it will hurt you. Everyone tests the happy path. Nobody tests what happens when the bridge comes back and the master is already three trades ahead."
— Alex Onta, Executive Director, SINGUARD
Key Takeaways
- A copier has to handle detection, symbol mapping, sizing, modifications, failures and reconnection, and each of those can fail on its own.
- Equity proportional sizing keeps percentage risk aligned as balances diverge; fixed lots and fixed multipliers stop making sense quickly.
- Latency, spread differences, swaps, lot rounding and rejections guarantee the follower's curve will not match the master's.
- Prop firm agreements, broker terms and financial regulation all restrict copying, and the person selling the signal carries the licensing question.
Frequently Asked Questions
Will a copied account produce the same results as the master?
No. Copy latency, different spreads and swap rates, rounding of lot sizes, symbol name differences and rejected orders all create divergence, and the gap widens over time. Treat the master's record as a reference for style rather than a prediction of your own outcome, and remember that leveraged trading can lose the full account balance.
Which copier sizing mode is safest?
Equity proportional sizing keeps the receiving account's risk in the same proportion as the master's as balances change, which is usually safer than a fixed multiplier and much safer than a fixed lot size. Any mode still needs a maximum lot cap and a per-account daily loss limit, because a sizing rule cannot judge whether a single trade is reckless.
Do prop firms allow trade copiers?
Policies vary and the detail matters. Many firms permit a trader to copy between their own accounts but prohibit copying one signal across accounts belonging to different people, since that creates correlated exposure the firm has to hedge. Breaching the rule usually voids the account rather than triggering a warning, so read the agreement before connecting anything.