View on GitHub

Staking Plans

Comprehensive catalog of 71 betting staking plans — back, lay, and each-way. Built for AI agents and humans.

Martingale Staking Plan

Overview

The most infamous negative progression system: double your stake after every loss. The theory: when you eventually win, you recover all previous losses plus one unit of profit. In practice, it’s extremely dangerous — losing streaks cause exponential stake growth and will exhaust any finite bankroll.

How It Works

  1. Start with 1 unit
  2. Loss: Double the stake for the next bet
  3. Win: Reset to 1 unit
  4. After any win, you are exactly +1 unit for that cycle

Example: £10 → lose → £20 → lose → £40 → lose → £80 → win (+£80). Net: −£10 −£20 −£40 +£80 = +£10 (1 unit profit).

Formula

\[S_{i+1} = \begin{cases} 2 \times S_i & \text{if loss} \\ S_0 & \text{if win} \end{cases}\]

After $n$ consecutive losses, stake = $S_0 \times 2^n$

Parameters

Parameter Type Default Description
base_unit number 1 Starting stake
max_steps number Optional cap on doublings (recommended)

Risk Assessment

The Mathematics of Ruin

Consecutive Losses Stake (units) Cumulative Loss
1 2 1
2 4 3
3 8 7
4 16 15
5 32 31
6 64 63
7 128 127
8 256 255
9 512 511
10 1,024 1,023

At 10 consecutive losses (not rare in betting), you need over 1,000× your base unit just to place the next bet.

⚠️ Critical Warning

Martingale is mathematically guaranteed to fail given:

  1. A finite bankroll
  2. A maximum bet limit (Betfair has one)
  3. An unbounded number of bets

The only way Martingale “works” is with infinite wealth and no bet limits — neither exists. Every professional betting resource advises against it.

When to Use

When to Avoid

Betfair Exchange Notes


Sources