HomeGames & Betting Math › Hedge Bet Calculator

Hedge Bet Calculator

Computes the stake to place on the opposite outcome so that the profit is the same whether the original bet or the hedge wins, and the profit (or loss) that this locks in.

When to use

You hold a bet whose odds have shortened (a futures ticket or a live bet) and want to know how much to stake on the other side to lock in an equal result either way.

Do not use when: You are placing fresh bets on all outcomes at the best available prices (use arbitrage-bet), or you want to hedge for a break-even instead of an equal profit. Mathematics only; not gambling advice.

Formula

hedge_stake = original_stake × original_decimal_odds / hedge_decimal_odds; guaranteed_profit = original_stake × original_decimal_odds − original_stake − hedge_stake; return_on_total_outlay_percent = guaranteed_profit / (original_stake + hedge_stake) × 100

Equal-profit hedge for a two-outcome market: the hedge is sized so that both outcomes return the same total. In three-way markets the hedge price must cover every outcome other than the original selection (e.g. a lay or double-chance price). Probability mathematics only; not gambling advice.

Inputs

ParameterTypeUnitRequiredDescription
original_stakenumberyesAmount staked on the original bet. Range: > 0, ≤ 1000000000
original_decimal_oddsnumberyesDecimal odds of the original bet when it was placed. Range: > 1, ≤ 1000000
hedge_decimal_oddsnumberyesDecimal odds now offered on the opposite outcome (the original bet losing). Range: > 1, ≤ 1000000

Outputs

OutputTypeUnitDescription
hedge_stakenumberStake on the opposite outcome that equalises the profit: original_stake × original_decimal_odds / hedge_decimal_odds.
guaranteed_profitnumberProfit locked in whichever outcome wins (negative = locked-in loss).
profit_if_original_winsnumberoriginal_payout − original_stake − hedge_stake.
profit_if_hedge_winsnumberhedge_stake × hedge_decimal_odds − hedge_stake − original_stake (equal to the previous value by construction).
return_on_total_outlay_percentnumber%guaranteed_profit / (original_stake + hedge_stake) × 100.
original_payoutnumberoriginal_stake × original_decimal_odds.
total_outlaynumberoriginal_stake + hedge_stake.
combined_implied_probability_percentnumber%100/original_odds + 100/hedge_odds; below 100 % the hedge locks in a profit, above 100 % a loss.

Example

100 at 5.00, hedge now 1.50: {"original_stake":100,"original_decimal_odds":5,"hedge_decimal_odds":1.5}{"hedge_stake":333.33,"guaranteed_profit":66.67,"profit_if_original_wins":66.67,"profit_if_hedge_wins":66.67,"return_on_total_outlay_percent":15.38,"original_payout":500}

100 at 1.80, hedge at 1.80 (locks in a loss): {"original_stake":100,"original_decimal_odds":1.8,"hedge_decimal_odds":1.8}{"hedge_stake":100,"guaranteed_profit":-20,"return_on_total_outlay_percent":-10,"combined_implied_probability_percent":111.11}

GET https://tttkmbb.com/api/v1/calculate/hedge-bet?original_stake=100&original_decimal_odds=5&hedge_decimal_odds=1.5

Machine access

Sources

FAQ

When does hedging lock in a profit?

When 1/original_odds + 1/hedge_odds is below 1, i.e. the combined implied probability is under 100 %. That happens when the original price has shortened enough since the bet was placed.

What if I only want to get my stake back?

Stake original_stake / (hedge_decimal_odds − 1) on the other side instead; this calculator sizes the hedge for equal profit on both outcomes, not for break-even.

Related calculators