Everyone’s agent looks like a genius for the first week. The market happened to trend, the strategy happened to fit, and the equity curve went up and to the right. Then the regime changes and you find out whether you built an edge or a coincidence. Paper trading is how you find that out without paying tuition in real money.
It is especially important for AI agents. A backtest tells you how a fixed rule would have done on past data. An LLM-driven agent is not a fixed rule — it makes fresh decisions every cycle, and its behaviour under live, moving data is the thing you actually need to observe. Paper trading is the only setting that shows you that behaviour with zero downside.
What paper trading actually is
Paper trading feeds your agent real live market data — the same Binance prices, order book, and candles a live agent would see — but routes its orders to a simulator instead of a real exchange. The simulator fills those orders the way the real market plausibly would, then tracks the resulting positions and P&L. No exchange account, no API keys, no capital at risk.
The quality of a paper-trading system is entirely in how honestly it simulates fills. A good one applies:
- Real fees — Binance maker/taker costs deducted on every simulated trade, because fees are often where agents actually lose.
- Slippage and depth — a market order walks the simulated book and fills at a volume-weighted average, not a single magic price.
- Partial fills and latency — so the agent’s “decision price” and its “fill price” differ, exactly as they would live.
A simulator that fills everything instantly at the mid price will flatter your agent and lie to you. Insist on realistic costs.
Setting it up on OpenClaw
With OpenClaw installed, a paper-trading skill gives the agent its market tools and a simulated execution venue in one step:
npx @reefclaw/connect
(Your agent runs the installer itself when you paste your ReefClaw connection message.) That hands the agent a toolkit to read markets, analyse them, run the strategies you configure, scan patterns, and place simulated orders — all on live Binance data, with no keys involved. Because there is no exchange connection, there is genuinely nothing to lose. It is the right place for the agent to spend its first few weeks. (When you are ready to wire in a real account, see connecting OpenClaw to Binance.)
What to measure (and what to ignore)
The mistake is judging a paper run by its headline P&L. A run can be green and still be evidence of a bad system. Look instead at:
- Expectancy after costs. Average profit per trade once fees are subtracted. A 60% win rate with negative net expectancy is a slow bleed dressed up as success.
- Capture ratio. Of the favourable move each trade reached, how much did the agent actually keep? Agents that scratch winners early have a low capture ratio even when they “win.”
- Trade frequency. More trades means more fees. If the agent trades constantly, commissions may be quietly eating the edge.
- Max drawdown. The worst peak-to-trough fall. This is what your real-money nerve will actually be tested against.
- Did the safety limits fire? Paper trading is also a test of your risk controls. Confirm the drawdown and rate limits actually triggered when they should have.
Why paper results sometimes lie
Paper trading is necessary but not sufficient, and it is worth knowing where the gap to live trading comes from:
- Optimistic fills. If the simulator ignores queue position and real slippage, live execution will be worse than paper.
- Funding costs. On perpetual futures you pay or receive funding while a position is open; a simulator that skips it overstates returns on positions held through funding windows.
- Overfitting to the window. A strategy tuned until it looks perfect on the exact period you tested has learned that period, not an edge.
- No emotional or operational friction. On paper you never hesitate to pull the kill switch or fat-finger a setting. Live, you do.
The standard way to close the remaining gap is a small micro-live stage between paper and full size — real money, but a tiny fraction of your intended capital — so you confirm real fills and real slippage match the paper picture before you scale up. Paper proves the logic; micro-live proves the execution.
Watch the paper run, don’t just read the summary
The most useful thing you can do during a paper run is watch it, not just check the final number. A supervision dashboard lets you see each simulated decision as it happens — what the agent saw, why it acted, where its stop went — which is how you catch a broken behaviour in week one instead of inferring it from a disappointing equity curve in week four. That is the same supervision discipline you will rely on in live trading, practised for free.
That is exactly what ReefClaw is built to show: your OpenClaw agent’s every order, its reasoning, and your simulated P&L in real time — on real Binance data, with no keys and no capital at risk — so by the time you go live, nothing about how your agent behaves is a surprise.
Frequently asked questions
What is paper trading?
Is OpenClaw paper trading free?
How long should I paper trade before going live?
Why did my agent do well on paper but badly live?
What should I measure during paper trading?
Related: Connect OpenClaw to Binance · Supervise an OpenClaw trading agent · Try the live demo