Install
openclaw skills install @themsquared/kalshi-odds-scanner-proReal-time scanner comparing Kalshi odds to 6 sportsbooks, auto-buys 8%+ edge plays with Kelly sizing on NBA, NCAAB, NHL, and MLB markets.
openclaw skills install @themsquared/kalshi-odds-scanner-proCompare Kalshi prediction market prices vs 6 major sportsbooks in real-time. Fires automatically on 8%+ edge. Kelly-sized execution. The exact scanner used to deploy capital daily on Kalshi sports markets.
💰 Used to generate consistent returns on Kalshi sports markets. $79 value.
odds_scanner.py to your polymarket/trading directoryKALSHI_KEY_ID — your Kalshi API key ID~/.config/kalshi/private_key.pem — your Kalshi private keyEdit constants at the top of the script:
ODDS_API_KEY = "your_key_here"
KALSHI_KEY_ID = "your_kalshi_key_id"
# Scan YES plays (default NBA)
python3 odds_scanner.py
# Scan NO plays (heavy favorites, 74% win rate)
python3 odds_scanner.py --side no
# Scan both YES and NO
python3 odds_scanner.py --side both
# Scan NCAAB (college basketball)
python3 odds_scanner.py --sport ncaab --side both
# Execute found plays on Kalshi
python3 odds_scanner.py --buy --sport nba --side both
# Set custom edge threshold
python3 odds_scanner.py --min-edge 0.10
| Key | League |
|---|---|
nba | NBA Basketball |
ncaab | NCAA Basketball |
nhl | NHL Hockey |
mlb | MLB Baseball |
YES side: sportsbook_prob - kalshi_yes_ask > 8%
NO side: (1 - sportsbook_prob) - kalshi_no_ask > 5%
f = (b*p - q) / b × 0.25 (quarter Kelly)
MIN_BET = $10, MAX_BET = $60RESERVE = $50 kept aside alwaysWorks with ensemble.py and momentum.py in the same directory for multi-model consensus gating.
cryptography library: pip install cryptography