Ask what the best automated copy trading strategy is and most answers point at somebody else's entries. The strategy that is genuinely yours sits one layer down: sizing rules, filters, aggregation, update policy and circuit breakers. Five knobs, all under your hand.
Three accounts sit on the same source. Account one runs a flat 0.50 lots per copy. Account two runs a 0.5x multiplier off the source's size. Account three sizes every copy to 0.75 percent of its own equity against the actual stop distance. The source places exactly the same trade on all three, and by the end of the month the three accounts have nothing in common — different exposure per trade, different worst days, different survival odds through the same losing streak.
The source did not change. The replication policy did. That policy is what "strategy" means in copy trading, and it is the part you own outright.
Copy trading has an alpha layer and a replication layer.
The alpha layer is whoever generates the trades — your own discretionary trading on a source account, a colleague's system, a channel you follow. You choose it, you can stop following it, but while you are following it you do not control it.
The replication layer is the transform between that source and your accounts. Every trade passes through it, and every parameter in it is a decision you made, explicitly or by accepting a default. People spend months evaluating the first layer and thirty seconds on the second, which is backwards, because the second is deterministic, testable and entirely yours.
There are five knobs.
This is the one that changes outcomes most and gets the least thought.
Fixed lot. Every copy is the same size regardless of instrument, stop distance or account balance. It is the default in cheap tools and it is almost always wrong: 0.50 lots on EURUSD with a 20-pip stop and 0.50 lots on gold with a six-dollar stop are not comparable risks, and neither adjusts as the balance moves.
Multiplier. The destination copies the source's volume times a factor. Coherent when the accounts are similar in size and the source sizes sensibly; meaningless when they are not. A 0.5x multiplier from a 50,000 account to a 5,000 account still leaves the small account at roughly five times the source's percentage risk.
Balance or equity ratio. The destination scales by the ratio of its balance to the source's. This keeps percentage exposure aligned automatically as accounts grow apart, and it is the sane default for copying between your own accounts of different sizes.
Risk percentage. The destination ignores the source's volume entirely and computes its own from its equity and the trade's actual stop distance. Here is the arithmetic, using a 40-pip EURUSD stop on a standard contract where a pip is worth about 10 dollars per lot:
Those figures are illustrative and depend on your broker's contract specification, but the property they demonstrate is exact: risk-percentage sizing is the only rule that stays correct when the balance moves, when the instrument changes, and when the stop distance changes. It is also the only rule that requires the source to supply a stop — which is a feature, because a trade with no stop has no defined risk to size against.
TIP
Whichever rule you pick, write down what happens when the computed size falls below the symbol's minimum lot. Round up and you have silently exceeded your risk limit. Round down to zero and the terminal rejects the order. Skip and log is usually the honest answer, and it needs to be visible when it happens.
A filter is a rule for not copying. Every one of them trades coverage for control, and the defaults are rarely right for your situation.
Every filter needs to produce a visible, reasoned skip. A filter that silently drops trades is indistinguishable from a bug, and you will eventually spend a weekend proving which one it was.
The moment more than one source feeds one destination, you have a portfolio problem rather than a copying problem.
Opposing trades. Source A buys EURUSD, source B sells it. On a hedging account you hold both and pay both spreads for a net position of zero. On a netting account the second order reduces or reverses the first, and now one source's exit will close a position the other source thinks it still owns. Neither behaviour is wrong; running without deciding which you want is.
Correlation stacking. Five sources each risking 1 percent sounds like diversification. If four of them are long the dollar on the same morning, it is a 4 percent directional bet with extra steps. Copy trading spreads execution across accounts; it does not spread risk across uncorrelated ideas unless the sources genuinely are uncorrelated, and most retail sources are long the same three instruments.
Attribution. With multiple sources into one account, every position must carry a tag saying which source created it. Without that, an exit instruction from source B can close source A's position, and the account's history becomes unreadable after the fact.
WARNING
Two sources feeding one account is a portfolio with no portfolio manager. Either set a total-exposure cap that sits above both, or give each source its own destination account.
What travels after the open is a policy choice, and most tools bury it in a checkbox.
The rules that stop everything without asking you.
And the breaker everybody forgets: what happens to open copies when copying is disabled. Close them all, leave them running, or stop new copies only. All three are defensible. Not knowing which one your tool does is not.
The useful thing about the replication layer is that it can be tested without predicting anything.
Take the source's actual trade history — entries, exits, stops, partials, timestamps — and replay it through different policies. You are not testing whether the entries were good; you already know what they did. You are testing what the transform does to them: what exposure each policy would have carried, what the worst day would have looked like under each, how many trades each filter would have removed and which ones.
That is a deterministic comparison of your own rules against a fixed input, which is a far more honest exercise than a backtest of somebody else's entries. It answers questions like "would the maximum-spread filter have removed my three worst fills" and "does risk-parity actually reduce my worst day here, or just move it". A journal that records the reason for every skip makes this replay possible after the fact rather than only in theory.
TIP
Run this comparison once a quarter against your own live history. The policy that suited a 5,000-dollar account does not automatically suit the same account at 20,000.
Write your replication policy down as five lines — sizing rule, filters, aggregation, update policy, breakers — and put the document somewhere you will see it. Most people cannot state theirs from memory, which means they are running whatever their tool shipped with. The defaults were chosen by a developer who has never seen your balance, your broker or your drawdown rule.
If the destinations are funded accounts with their own rules, /blog/prop-firm-copier-sizing-across-accounts goes into how the sizing knob interacts with challenge and drawdown limits. And for what is actually being transmitted between the two ends — and what deliberately is not — see /blog/signal-providers-and-followers.