Lunar's Polymarket Bot Blueprint (4 Repos + Playbook)
Clone 3 repos, paste the playbook prompts, one weekend to +$11.4K/19d at 74% win rate.
Complete $25/month Polymarket bot build that reportedly produced +$11,400 in 19 days at 74% win rate. Ships the three data+infra repos (poly_data's 86M trades, Polymarket's official Rust CLI, dylanpersonguy's 7-strategy TypeScript bot) plus the step-by-step playbook wiring them into Claude Code with a 3-of-4 consensus brain (base-rate, news, whale, disposition), Kelly sizing, and three exit triggers (85%-of-gap target, 3x volume spike, 24h stale-thesis decay).
Coming soon — content is being finalized. Email josh@thetalkinghedge.com to be notified when this pack ships.
What's included (4 skills)
Lunar's Polymarket Bot Blueprint ($25/mo, +$11.4K/19d)
Step-by-step $25/month Polymarket bot build — poly_data for the target list, polymarket-cli for scanning (three-factor scoring: price gap, order book depth, hours to resolution), Polymarket/agents for the brain (base rate / news / whale / disposition agents with 3-of-4 consensus), Polymarket-Trading-Bot strategies in consensus (2 agents → full position, 1 → half, disagree → skip), three exit triggers (target-hit at 85% of gap, volume spike 3x, 24h stale thesis). Reported 214 trades, 74% win rate, Sharpe 2.31, +$11,400 in 19 days.
poly_data (86M Polymarket Trades Dataset)
646-star GitHub dataset containing every trade ever made on Polymarket — 86M rows covering every wallet, entry, exit, and timestamp. The starting point for any serious Polymarket analysis: clone, point Claude at processed/trades.csv, ask for wallets with 100+ trades and 70%+ win rate, get a ranked target list.
Polymarket CLI (Official Rust Scanner)
Polymarket's official Rust CLI — read-only scanning with no API key required. Three commands are all you need: markets list --limit 500 for active markets, clob book $TOKEN_ID for order book depth, clob midpoint $TOKEN_ID for the price. Built for agents; Claude pipes the JSON straight in.
Polymarket Trading Bot (7 Strategies, 53K TS Lines)
dylanpersonguy's 53,000-line TypeScript Polymarket bot shipping 7 strategies — use it as a module source rather than a monolith: pull the arbitrage detector for related-market price gaps, the convergence engine for entries when price moves toward estimate, the whale_copy module for 60s-delay mirroring of a target wallet list. Shared-wallet, no-shared-memory agent pattern.