Concept Guide

What Is +EV Betting?

A developer's guide to expected value in sports betting — the math behind finding bets with a genuine edge, with formulas and code examples.

By theFounder·SharpAPI

+EV betting means placing bets where the sportsbook's odds imply a lower probability than the true likelihood of the outcome. The formula is: EV% = (fair_probability x decimal_odds - 1) x 100. If the result is positive, the bet has positive expected value — meaning it will be profitable over a large sample of bets. Fair probability is typically derived from Pinnacle's sharp lines with vig removed.

The Concept: Why Expected Value Matters

Every bet you place has an expected value — the average amount you'd win (or lose) if you made the same bet thousands of times. Casinos have a positive expected value on every game they offer; that's their business model. +EV betting flips this: you become the casino.

The key insight is that sportsbooks don't all agree on the correct odds. When DraftKings offers +150 on an outcome whose true probability is 42% (fair odds: +138), you're getting better value than you should. Each individual bet might win or lose, but across hundreds of +EV bets, the math guarantees a profit.

The challenge is determining "true probability." This is where sharp sportsbooks come in. Pinnacle's lines, with their 1-3% vig removed, serve as the market's best estimate of true probability. Any other sportsbook offering significantly different odds is either mispriced or slow to update — and that's your edge.

The EV Formula

EV% = (fair_probability × decimal_odds - 1) × 100

fair_probability — The true probability of the outcome, derived from a sharp line (e.g., Pinnacle) with vig removed. Expressed as a decimal (0.523, not 52.3%).

decimal_odds — The odds at the sportsbook you're evaluating, in decimal format. American -105 = 1.952 decimal. American +150 = 2.500 decimal.

Result interpretation — Positive = the bet has edge (you should bet it). Negative = the house has edge (you should skip it). Zero = break-even.

Vig Removal: Finding True Probability

Before you can calculate EV, you need the fair probability without the sportsbook's margin. Here's how to strip the vig from Pinnacle's line:

Pinnacle offers:  Lakers -115  |  Celtics +105

Step 1: Convert American odds to implied probability
  Lakers:  115 / (115 + 100) = 0.535 (53.5%)
  Celtics: 100 / (105 + 100) = 0.488 (48.8%)

Step 2: Sum the implied probabilities
  Total = 0.535 + 0.488 = 1.023
  The 2.3% above 100% is Pinnacle's vig

Step 3: Divide each by total to remove vig
  Lakers fair:  0.535 / 1.023 = 0.523 (52.3%)
  Celtics fair: 0.488 / 1.023 = 0.477 (47.7%)
  Total = 100% ← vig is removed

Full Worked Example

SCENARIO: Lakers vs Celtics

Pinnacle fair probability for Lakers: 52.3% (from vig removal above)
DraftKings offers Lakers at -105 (decimal: 1.952)

EV% = (fair_probability x decimal_odds - 1) x 100
EV% = (0.523 x 1.952 - 1) x 100
EV% = (1.021 - 1) x 100
EV% = +2.1%

INTERPRETATION: This Lakers bet at DraftKings has +2.1% EV.
Over 1,000 similar bets at $100 each, your expected profit
is approximately $2,100 (2.1% x $100,000 total wagered).

EV Thresholds: How Much Edge Is Enough?

EV RangeQualityNotes
< 0%Negative EVHouse has the edge. Don't bet.
0-2%MarginalThin edge. Common on popular markets. High volume needed to see results.
2-5%GoodSolid value. This is the sweet spot for most +EV bettors.
5-10%ExcellentStrong edge, often from books slow to update. Act fast — these close quickly.
10%+RarePossible line error. Book may void the bet. Bet cautiously.

+EV Betting vs. Arbitrage

Aspect+EV BettingArbitrage
Risk per betYou can lose individual betsGuaranteed profit per event
Long-term edgeHigher expected returnsLower but guaranteed returns
Capital neededModerate (bet one side)High (bet both sides simultaneously)
Detection riskLower (looks like normal betting)Higher (correlated bets across books)
Opportunity frequencyMany opportunities dailyFewer, often brief windows
VarianceHigh (short-term swings)Low (guaranteed per event)

Most professional bettors combine both strategies: +EV for the bulk of their volume (higher returns, more sustainable) and arbitrage for guaranteed-profit situations when they appear.

Building a +EV Detection Tool

To detect +EV opportunities programmatically, you need two things: a sharp reference line (Pinnacle) and odds from the sportsbooks you want to compare against. SharpAPI provides both in a single API call.

Example: Find +EV Bets (TypeScript)

import SharpAPI from '@sharp-api/sdk'

const client = new SharpAPI({ apiKey: process.env.SHARPAPI_KEY })

// Get +EV opportunities across all sportsbooks
const ev = await client.ev.list({
  sport: 'basketball_nba',
  min_ev: 2.0,  // Only show bets with 2%+ edge
})

for (const opportunity of ev.data) {
  console.log(
    `${opportunity.event}: ${opportunity.outcome}`,
    `@ ${opportunity.bookmaker} ${opportunity.odds}`,
    `EV: +${opportunity.ev_percent.toFixed(1)}%`,
    `(Fair: ${opportunity.fair_odds})`
  )
}

SharpAPI computes EV server-side using Pinnacle fair lines, so you don't need to implement vig removal or EV calculation yourself. The +EV API returns pre-calculated opportunities, or you can stream them in real-time via SSE.

Frequently Asked Questions

What is +EV betting?+
+EV (positive expected value) betting means placing bets where the odds offered by a sportsbook are better than the true probability of the outcome. Over hundreds of bets, +EV betting produces a mathematical profit. It's the same edge concept that casinos use — except you're the one with the advantage.
How do you calculate expected value in sports betting?+
EV% = (fair_probability x decimal_odds - 1) x 100. First, determine the true probability of an outcome using a sharp reference line (typically Pinnacle with vig removed). Then multiply by the decimal odds offered at the sportsbook you're betting at. If the result exceeds 1, the bet has positive expected value.
What is a "sharp" sportsbook and why does it matter for EV?+
A sharp sportsbook (like Pinnacle) doesn't limit winning bettors, so its lines reflect the collective wisdom of professional bettors and syndicates. These lines are the closest available approximation of true probability. By removing Pinnacle's small vig (1-3%), you get "fair odds" — the baseline for calculating whether other sportsbooks are offering +EV.
Is +EV betting profitable long-term?+
Yes, by mathematical definition. If you consistently bet at +EV, the law of large numbers guarantees profit over a sufficient sample size. However, variance can be significant in the short term — you may have losing streaks even with a genuine edge. Most +EV bettors see results converge to expected profit after 500-1,000+ bets.
What is a good EV percentage to bet on?+
Any positive EV is technically worth betting. In practice: 0-2% is marginal (common, thin edge), 2-5% is good (strong value, bread-and-butter for most +EV bettors), 5-10% is excellent (often from slow-to-update books), and 10%+ is rare and may indicate a stale line or error that could be voided.
What is vig (vigorish) and how do you remove it?+
Vig is the sportsbook's built-in margin. A fair coin flip would be +100/+100 (even odds on both sides), but books offer -110/-110, keeping ~4.5% as profit. To remove vig: convert both sides to implied probability, sum them, then divide each by the total. The result is the true probability without the book's margin.
How is +EV betting different from arbitrage?+
Arbitrage guarantees profit on a single event by betting both sides across different sportsbooks. +EV betting has an edge on each individual bet but accepts variance — you might lose any single bet. Arbitrage is lower-risk but requires more capital and sportsbooks detect it faster. +EV betting is more sustainable long-term and harder for books to detect.
Can sportsbooks limit you for +EV betting?+
Yes. Recreational sportsbooks (DraftKings, FanDuel, BetMGM) routinely limit or ban winning bettors. This is why +EV bettors use multiple accounts across all available books and rotate their action. Pinnacle is the notable exception — they never limit winners, which is why they're used as the reference line rather than bet at for +EV.

Related Resources

Ready to Build?
Start free. Scale when you're ready. No credit card required.

No credit card required