Tools

How to Build a Lottery Tracker: 5 KPIs That Matter

Published on

A lottery tracker is a simple log that measures your own play against the math of the game. Track five KPIs: expected value per ticket, cumulative spend versus theoretical return, a split-risk score for each combination, hit frequency versus expected frequency, and your bankroll burn rate. Update it once per draw, in a spreadsheet or in LotteryCortex.

Most "lottery trackers" track the wrong thing — winning numbers, hot/cold counts, lucky streaks. None of that improves your decisions. A useful tracker measures your own play against the math of the game, so you know whether you're spending rationally.

Here are the 5 KPIs we built into the LotteryCortex tracker, why each one matters, and how to compute them yourself if you'd rather build your own.

KPI 1 — What is expected value per ticket (EV/ticket)?

The single most important number. EV/ticket = (sum of all prize tiers × their probability) − ticket cost.

EV = Σ (P(tier) × payout(tier) × (1 − tax) × (1 − split_factor)) − cost

Most weeks, EV is negative (you "pay" ~50 cents on every euro). When jackpots roll over and the cap structure kicks in, EV can climb above €1 per €1 wagered. Your tracker should highlight when EV crosses zero — that's the only mathematically defensible time to buy more lines.

KPI 2 — How do cumulative spend and theoretical return compare?

Plot two lines over time:

  • Cumulative spend: every euro you've put in.
  • Cumulative theoretical return: sum of (EV/ticket × tickets bought).

The gap between them is your expected loss. If it's growing faster than 50% of spend, you're playing in too-low-EV moments. If it's narrowing, you're disciplined about cap weeks.

KPI 3 — What is a split-risk score per combination?

A combination's EV drops sharply if many other people picked it. A tracker should compute a popularity score for every line you play:

  • +10 if all numbers ≤ 31 (birthday-pattern)
  • +5 if numbers form a visual line on the bet slip
  • +5 if combination matches a famous date (anniversary, lucky number culture)
  • −5 if at least 3 numbers are >31 and randomly spread

Anything above +15 means you're sharing your jackpot with 5–10 other winners on average.

KPI 4 — How does hit frequency compare with expected frequency?

For every prize tier, compare:

  • Observed hits: how many times you've won that tier
  • Expected hits: tickets_bought × P(tier)

In short runs they'll diverge wildly — that's variance, not a signal. In long runs (>500 tickets) deviations >2σ usually mean your number selection has structure that doesn't match the game's random output. (Sometimes that's a bug in your random pick logic.)

KPI 5 — What is your bankroll burn rate?

Your bankroll = the cap you set for lottery spend per month/quarter. Track:

  • € spent / € budgeted (target ≤ 100%)
  • Average ticket cost (creeping upward = scope drift)
  • "Chase spending": tickets bought within 24h of a near-miss (>0% = warning sign)

Bankroll burn matters more than EV when you're new to tracking. EV optimization assumes you're not betting beyond your means.

How do you wire these KPIs into a spreadsheet?

If you don't want to use our app, here is a minimal Google Sheets schema:

Column Type Source
date date manual
game text manual
draws_played int manual
cost currency manual
ev_per_line currency from /api/public/ev?game=
split_score int formula
prize_won currency manual
running_spend currency =SUM(cost up to row)
running_ev currency =SUM(ev × draws up to row)

Add a chart: running_spend vs running_ev. That single chart tells you if you're winning the long game against math, regardless of any individual draw.

What should you NOT track?

  • Hot/cold numbers: 20-year backtest shows no edge; see our backtest.
  • "Due" numbers: gambler's fallacy. Each draw is independent.
  • Lucky personal numbers: fine as a hobby, terrible as a strategy (high split risk).

What is the bottom line?

A tracker isn't there to make you win — nothing makes you win at a −EV game most weeks. It's there to make sure you only spend when math agrees, and that your bankroll stays within your budget. Five KPIs, one chart, ten minutes a week.

Want this built in already? Open the LotteryCortex tracker.