copy trading bots, and how they lose money
every copy trading bot is the same four components in a different wrapper. the marketing talks about the first one. the money is made and lost in the other three.
strip the branding off any crypto copy trading bot and you find the same four components. they are worth naming, because vendors compete loudly on the first one and the other three are where your outcome is decided.
the four parts
- detection. how it learns that the trader did something.
- sizing. how it converts their trade into your trade.
- execution. how it gets your order filled.
- exit. how, and whether, it gets you out.
a bot that is excellent at detection and careless about the other three will reliably lose money faster than doing nothing. this is not a hypothetical failure mode, it is the modal one.
detection: where the latency actually goes
there are two places to learn that a trader has traded, and they are nowhere near each other in time.
| source | what it waits for | typical lag |
|---|---|---|
| app notification | push queue, delivery, unlock, tap | seconds → hours |
| public api polling | the poll interval, plus the api's own lag | 5 – 60s |
| chain websocket | the block containing the fill | ~1s |
a bot that reads notifications or polls an api is standing in the same queue as every human follower, slightly nearer the front. a bot subscribed to the chain is not in the queue at all — it sees the fill as a settled fact at the block, before any notification has been delivered to anyone.
whether that matters depends on how fast the edge decays. we measured 29 first buys from a large fomo wallet: median +39% at one minute, +43% at fifteen, and a fall back toward the middle of the hour's range by sixty minutes. against a curve like that, polling every thirty seconds is not a slightly worse version of the same strategy. it is a different strategy with a worse entry price.
sizing: the part that actually ruins people
this is the largest risk in copy trading and it gets a fraction of the attention that latency does.
a leader who opens a $49,900 position may be risking two percent of their account. copy that proportionally to your $2,000 and you have a rounding error. copy it as a flat ticket you chose while feeling optimistic and it can be a third of everything you have. the ticker is identical and the bet is not remotely the same.
two settings fix most of this, and any bot missing either is unfinished:
- a fixed ticket per copied trade, denominated in your money, not a percentage of theirs.
- a hard cap per trade that overrides the ticket. the ticket bounds the normal trade. the cap bounds the abnormal one, which is the one that matters.
exits: the half that is usually missing
an enormous number of copy tools mirror entries and stop there. this is a defensible engineering decision and an indefensible product one, because on a decaying move the sell carries more of the outcome than the buy.
the arithmetic is unforgiving. if the median move peaks at fifteen minutes and reverts through the hour, a copied entry without a copied exit converts a good trade into a coin flip resolved by whether you happened to be looking at your phone. you have automated the exciting half and kept the hard half manual, which is precisely backwards.
ask any tool one question before funding it: does it copy the sell? if the answer is a paragraph rather than a yes, it is a no.
six ways these things lose money
- slippage that is never shown. your fill lands after theirs, worse, and on a violent candle much worse. tools that report performance without per-trade slippage are reporting the trader's results, not yours.
- gas on both legs. every entry and every exit is a transaction. an active leader making several trades a day makes this a real line item rather than a rounding error.
- copying adds as if they were entries. a trader topping up a two-week-old position is not making the same event as one opening a name they have never held. bots that treat both identically dilute the thing that worked.
- partial exits that do not translate. the trader sells 30% of a position. at your scale that is below a viable trade size, so it resolves to all or nothing. your risk profile silently stops matching theirs.
- manual overrides. reviewing each copy before it fires reintroduces every millisecond of the latency you paid to remove, and adds the delay of your own deliberation.
- tax volume. automation multiplies your trade count. in most jurisdictions each one is a disposal. the paperwork scales with the activity, and nobody plans for it in month one.
the custody question
before any of the above matters, there is one binary question, and it dominates the others:
can this thing move funds out of my wallet, or only trade them in place?
an allowance granted from your own wallet, revocable by you at any moment, means the worst realistic outcome is bad trades. a deposit into an address someone else controls means the worst realistic outcome is a counterparty event, and you are now making two bets where you intended to make one. this distinction is checkable on-chain rather than a matter of trusting a landing page, which is what makes it the first thing to check.
the checklist before you fund anything
- does it copy exits, not just entries?
- does it detect on-chain, or is it reading notifications and polls?
- can i set a flat ticket and a hard cap, independently?
- does it show me realised slippage per trade, or only aggregate performance?
- is there a two-stage kill switch — stop new copies, and close what is open? these are different emergencies.
- can it withdraw? if yes, stop and price that separately.
- who pays gas, and is it disclosed before the first trade or after it?
the honest summary
a copy trading bot does not give you somebody else's judgment. it gives you somebody else's judgment, delayed, at your size, minus costs. the whole engineering problem is shrinking each of those three terms, and the whole marketing problem is that only the first one is fun to talk about.
which is also why the sensible expectation is not that copying turns a bad account into a good one. it is that copying lets you participate in a strategy you could not execute manually — because it happens at 4am, or in fifteen-minute windows, or forty times a week — with the costs made visible instead of hidden.
if the trader you have in mind is on fomo specifically, the mechanics are in how to copy a fomo trader, and the reason latency dominates there is in the first-buy study.
frequently asked
is copy trading profitable?
copying a profitable trader is not the same as being profitable, and the gap between the two is made of latency, sizing and exits. you enter after they do, at a worse price, at a size chosen by different rules, and you leave whenever your tooling or your attention lets you. a trader can be genuinely good and their copiers still lose, purely through that gap. narrowing it is the only lever you actually control.
what is the biggest risk in copy trading?
position sizing, and it is not close. a leader risking 2% of a large account on a trade that would be 40% of yours has handed you a completely different bet with the same ticker on it. the second biggest is missing exits: entries copy easily because they are exciting and exits do not because they are not.
do copy trading bots need custody of my funds?
the good ones do not. an allowance granted from your own wallet lets a bot trade your funds in place while leaving withdrawal impossible, which caps the worst case at bad trades rather than no funds. if a tool requires you to deposit into an address it controls, you are making a counterparty bet on top of a trading bet, and you should price it that way.
how fast does a copy trading bot need to be?
it depends entirely on how fast the edge decays. on a slow-moving position, seconds are irrelevant. on the fomo first buys we measured, the median move peaked around fifteen minutes after the fill and gave most of it back within the hour, which makes the difference between one second and thirty minutes the difference between the trade and the wrong side of it.
what fees should i expect?
count three costs, not one. the visible fee, the gas on every mirrored entry and exit, and slippage — which is usually the largest and is the one most often left out of the marketing. a tool that shows you realised slippage per trade is telling you something a tool that reports average performance is not.
stop reading. start copying.
pick a trader from the fomo leaderboard, set your size, and the entries and the exits land in your own wallet while you sleep.
open copyfomo on telegram →