Backtesting vs Paper Trading vs Simulation: What MEV Traders Should Use Before Live Execution
**Answer first** - Backtesting, paper trading, and simulation are three different safety layers. Backtesting asks whether a strategy would have survived historical conditions. Pape

Answer first - Backtesting, paper trading, and simulation are three different safety layers. Backtesting asks whether a strategy would have survived historical conditions. Paper trading asks how it behaves in the current market without moving live funds. Simulation asks whether a specific route, at the current state, clears execution checks before a live send. MEV traders should use all three, but none of them removes market or execution risk.
Many bot losses come from using the wrong test for the wrong question. A spreadsheet backtest cannot tell you whether today's relay path is stale. A paper-trading run cannot prove a historical edge. A simulation pass cannot tell you the next block will behave exactly the same.
The quick comparison
| Layer | Question answered | What it misses | When to use |
|---|---|---|---|
| Backtesting | Did this idea work in historical conditions? | Live competition, current latency, current fee regime | Before spending time on a strategy. |
| Paper trading | Does the strategy behave today without live funds? | Real inclusion, actual wallet permissions, some route timing | Before live capital. |
| Simulation | Would this route pass current-state checks? | Future state changes and competitor action | Before every live execution decision. |
| Capped live test | Does real execution match logs? | Scale effects | Only after the first three layers are clean. |
The order matters. Do not start with a live test just because a backtest looks good.
Backtesting: reject weak ideas early
Backtesting is historical replay. For MEV, useful backtesting should include:
- Real historical block state.
- Actual gas or fee conditions from the period.
- Failed attempts, not only successful paths.
- Slippage and route-size limits.
- Competition assumptions.
- Walk-forward validation across more than one market regime.
Backtesting is best at killing bad ideas. If a strategy cannot survive historical replay after costs, it is unlikely to deserve live capital.
Read more: How to Backtest a MEV Strategy.
Paper trading: observe today's market
Paper trading follows live conditions without submitting a real transaction. It is useful for discovering:
- Whether opportunities appear at the expected frequency.
- Whether logs are clean.
- Whether RPC and relay paths are stable.
- Whether fee estimates are realistic.
- Whether the operator understands the dashboard.
Paper trading is not proof of live performance. It does not expose every inclusion failure, wallet-permission issue, or liquidity shift. Treat it as a readiness check, not a victory lap.
Simulation: the last gate before live execution
Simulation checks whether a candidate route clears execution rules against a current or forked state. For MEV workflows, simulation should reject routes that fail:
- Profit after gas, tips, and software fees.
- Slippage limits.
- Revert guards.
- Wallet balance checks.
- Contract allowlists.
- Per-trade and daily budget caps.
- Strategy-specific risk rules.
FRB's conversion path is intentionally simulation-first: download and verify the build, configure limited settings, run Simulation Mode, review logs, then decide whether a capped live test makes sense.
The four-stage launch path
- Backtest the idea.
- Paper trade in current conditions.
- Run simulation mode with real settings but no live execution.
- Move to capped live execution only after logs and limits are reviewed.
Skipping stages usually creates false confidence. The most common mistake is treating a clean simulation as a reason to scale immediately. The better move is a small live canary with strict caps.
What clean logs look like
Before live execution, logs should show:
- No unknown revert reasons.
- Realistic net-result calculations.
- Stable RPC response times.
- Clear reason codes for skipped routes.
- No unexplained slippage spikes.
- No missing wallet-permission errors.
- Repeatable behavior across more than one session.
If the logs are noisy, the strategy is not ready.
Internal links for next steps
- Simulation Mode
- FRB Playbook: First Live Bundle
- Private Bundle Debugging
- Risk Management for MEV Trading Bots
- Slippage and Budget Caps
CTA: Use Simulation Mode and review the Risk Disclosure before live execution.
Testing can reduce avoidable mistakes, but it cannot predict future market behavior. Performance may vary with liquidity, latency, fees, competition, and strategy settings.
Step after reading
Launch FRB dashboard
Connect your wallet, pair the node client with a 6-character PIN, and assign the contract mentioned above.
Need the signed build?
Download & verify FRB
Grab the latest installer, compare SHA‑256 to Releases, then follow the Safe start checklist.
Check Releases & SHA‑256Related Articles
Further reading & tools
Discussion
No notes yet. Add the first observation, or share the link with your team on X (@MCFRB).