Combine 2 to 12 legs in American or decimal odds. Get the exact payout, profit, combined decimal odds, and combined implied probability, recomputed live as you type.
A parlay pays only if every leg wins, so the odds multiply. The math is exact, not an estimate. Here is the whole thing.
# 1. convert each leg to decimal odds American positive A -> decimal = A / 100 + 1 # +150 -> 2.50 American negative A -> decimal = 100 / |A| + 1 # -200 -> 1.50 Decimal odds -> used as entered # 1.91 -> 1.91 # 2. combine combined_decimal = product of all leg decimals payout = stake * combined_decimal profit = payout - stake implied_probability = 1 / combined_decimal