Strategies
Five live paper-trading strategies. Every 5 min the engine evaluates each one against fresh Polymarket + Odds API + Kalshi + AI data.
Consensus Autopilot
aiRuns Claude Opus 4.7 + GPT-4o + Gemini in parallel on top event markets. Bets bigger when all agree (2x), pass when split. Lower frequency than the others — 30 min cron — because each pass costs multiple LLM calls.
config
{
"max_price": 0.9,
"min_price": 0.1,
"max_markets_per_pass": 4
}Contrarian Fade
fadeWhen 4 or more top wallets pile into one side at >85%, take the opposite side. Crowded smart money is often wrong on overconfidence.
config
{
"crowd_threshold": 0.8,
"min_wallet_count": 3,
"fade_target_price": 0.5
}Copycat
copyMirror top-3 wallets BUYS within 60 seconds. Exit when they exit. Position-sized to track their wallet weight, capped at $100 per trade.
config
{
"top_wallets": 10,
"follow_window_sec": 7200,
"exit_on_smart_money_exit": true
}MasterPick Autopilot
aiPaper-trade whatever Claude Opus 4.7 calls at 70%+ confidence. Position scales 0.5x to 2x with confidence.
config
{
"confidence_floor": 0.45,
"position_scale_at_100": 2
}Resolution Arb
arbFind markets within 24h of resolution where Yes < 0.98 but consensus and orderbook lean Yes. Capture the last-mile premium.
config
{
"yes_price_max": 0.985,
"min_liquidity_usd": 1000,
"hours_until_close_max": 48
}Sports-vs-Poly Arb
arbCross The Odds API moneylines against Polymarket prices for the same game. Take the side where Polymarket disagrees with Vegas by >5%.
config
{
"min_odds_book_count": 3,
"disagreement_threshold": 0.05
}Strategy configs are server-defined for v1. v2 will let paid users override the parameters per-strategy (position size, thresholds, etc.) and run their own private book. See /book for live results.