Strategies

Five live paper-trading strategies. Every 5 min the engine evaluates each one against fresh Polymarket + Odds API + Kalshi + AI data.

Consensus Autopilot

ai

Runs 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.

realized
$0
unrealized
$0
open
0
win %
config
{
  "max_price": 0.9,
  "min_price": 0.1,
  "max_markets_per_pass": 4
}

Contrarian Fade

fade

When 4 or more top wallets pile into one side at >85%, take the opposite side. Crowded smart money is often wrong on overconfidence.

realized
$0
unrealized
$0
open
3
win %
config
{
  "crowd_threshold": 0.8,
  "min_wallet_count": 3,
  "fade_target_price": 0.5
}

Copycat

copy

Mirror top-3 wallets BUYS within 60 seconds. Exit when they exit. Position-sized to track their wallet weight, capped at $100 per trade.

realized
$0
unrealized
$-2108
open
185
win %
config
{
  "top_wallets": 10,
  "follow_window_sec": 7200,
  "exit_on_smart_money_exit": true
}

MasterPick Autopilot

ai

Paper-trade whatever Claude Opus 4.7 calls at 70%+ confidence. Position scales 0.5x to 2x with confidence.

realized
$0
unrealized
$0
open
7
win %
config
{
  "confidence_floor": 0.45,
  "position_scale_at_100": 2
}

Resolution Arb

arb

Find markets within 24h of resolution where Yes < 0.98 but consensus and orderbook lean Yes. Capture the last-mile premium.

realized
$0
unrealized
$0
open
0
win %
config
{
  "yes_price_max": 0.985,
  "min_liquidity_usd": 1000,
  "hours_until_close_max": 48
}

Sports-vs-Poly Arb

arb

Cross The Odds API moneylines against Polymarket prices for the same game. Take the side where Polymarket disagrees with Vegas by >5%.

realized
$0
unrealized
$0
open
0
win %
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.