# Backtesting vs Paper Trading: Key Differences

> Understand the key differences between backtesting and paper trading, what each tests, and how to use both together in your trading development.

**URL:** https://traderjournal.app/backtesting/backtesting-vs-paper-trading-key-differences

---


# Backtesting vs Paper Trading: Key Differences

Backtesting and paper trading are both ways to test a strategy without risking real money — but they test different things and produce different types of data.

## Backtesting

Backtesting is testing a strategy against *historical* price data. You scroll through past charts and ask: would my setup have appeared here? What would the result have been?

**Strengths:**
- Fast — you can test 500 setups in a few hours
- Covers many market conditions quickly
- No emotional component (you already know what happened)

**Weaknesses:**
- Hindsight bias — it is easy to cherry-pick setups subconsciously
- Cannot test execution (slippage, spread, order fills)
- Does not test how you behave in real time

## Paper Trading

Paper trading (or demo trading) tests a strategy on *live* price data with simulated money. You watch the market in real time and execute trades as you would live.

**Strengths:**
- Real-time execution — tests order placement, spread, slippage
- Tests psychology — you feel real-time uncertainty
- Shows whether you can actually identify setups as they form (not in hindsight)

**Weaknesses:**
- Slow — live market moves in real time
- Demo accounts often have different spreads and fills than live
- No real emotional stakes (most traders behave differently with real money)

## What Each Should Tell You

| Question | Backtesting | Paper Trading |
|---|---|---|
| Does this setup have a statistical edge? | ✓ | Partially |
| Can I execute this in real time? | ✗ | ✓ |
| Does my psychology hold up? | ✗ | Partially |
| Is the win rate consistent? | ✓ | ✓ |
| What is the realistic profit factor? | Approximate | More realistic |

## The Correct Order

1. **Backtest first** — 100–200 trades to confirm statistical edge
2. **Paper trade second** — 30–50 trades to confirm real-time execution
3. **Go live small** — confirm psychology holds with real money at minimal risk

## Journaling Both

Keep separate accounts in Trader Journal: one labeled "Backtest" and one "Demo". Compare the win rates and profit factors between them. A large gap between backtest and demo performance suggests either hindsight bias in the backtest or execution issues in live trading.

## Summary

Backtesting proves concept. Paper trading proves execution. Both are necessary. Neither replaces the other.