--- license: cc-by-4.0 language: - en pretty_name: SmartStake MLB Player Prop Odds and Results (2026) tags: - sports-betting - sports-analytics - mlb - baseball - odds - player-props size_categories: - 100M SmartStake (2026). SmartStake MLB Player Prop Odds and Results (2026). Hugging Face. ## Reproduce a finding: per-book closing Brier score Each book's closing-line accuracy (lower is sharper), straight from the Hub with DuckDB: ```python import duckdb duckdb.sql("INSTALL httpfs; LOAD httpfs;") print(duckdb.sql(""" WITH src AS (SELECT * FROM 'hf://datasets/SmartStake/mlb-player-props/**/*.parquet'), closing AS ( -- each book's last quote per selection before first pitch SELECT book, market, game_id, player, line, side, arg_max(odds, ts) AS odds, any_value(won) AS won FROM src WHERE result IS NOT NULL AND ts < start_time GROUP BY book, market, game_id, player, line, side), devig AS ( -- two-way no-vig probability for the over SELECT o.book, (1/o.odds)/(1/o.odds + 1/u.odds) AS p_over, o.won FROM closing o JOIN closing u USING (book, market, game_id, player, line) WHERE o.side='over' AND u.side='under' AND o.won IS NOT NULL) SELECT book, count(*) n, round(avg((p_over - won::INT)*(p_over - won::INT)), 4) AS brier FROM devig GROUP BY book HAVING n > 20000 ORDER BY brier """).df()) ``` This pools all lines; the full study refines it to each book's main (near 50/50) line to strip the alt-line bias, and adds the crossed-market analysis. Writeup: https://smartstake.app/learn/sharpest-sportsbooks-mlb-player-props