The 50 sharpest
minds in prediction
markets.
Real-time intelligence on Polymarket's top traders. Every wallet scored by Claude and monitored 24/7.
Three layers of intelligence.
Composite scoring, updated live.
Top 50 wallets ranked by PnL (40%), win rate (35%), and volume (25%). Updated every 60 seconds directly from Polymarket's public API — no stale data.
Every wallet read by AI.
Each wallet analyzed nightly — trade style, risk profile, copy-worthiness score. Not a generic rating. An actual read of the on-chain behavior.
Know before the market shifts.
Telegram alerts when any tracked wallet opens a $50+ position. World Cup 2026 signals surfaced first, automatically.
Wallet Tracking
Claude Trace Markets continuously monitors the 50 highest-scoring Polymarket traders, ranked by a composite of PnL, win rate, and volume.

Ranked by composite score
From the top 100 Polymarket traders by all-time PnL, Claude Trace Markets computes a composite score — 40% PnL, 35% win rate, 25% volume — and tracks the resulting top 50 wallets continuously, including their open positions and linked X profiles.
View leaderboardClaude Analysis
Every tracked wallet is read by Claude — analyzed for trading style, risk profile, and a copy-worthiness rating.

Copy-worthiness rating, with context
All 50 tracked wallets are top performers, so the score differentiates within that range — 90+ marks elite, consistent traders. Each profile includes a short written analysis of trading style and a two-word archetype tag, like Contrarian Strategist or Macro Oracle.
See trader profilesTelegram Signals
When a tracked wallet opens a new position of $50 or more, CTracePolyBot sends you the signal in real time.

Every tracked trader. Every open position.
The moment any of the 50 tracked wallets opens a new position, CTracePolyBot picks it up and sends it directly to you. Trader name, market, direction, size, and odds — everything you need in one message.
Join @CTracePolyBotDetection to delivery.
Every signal plotted from the moment a wallet position is detected to when the Telegram alert fires. Data from the last 100 signals.
How the 50 are picked.
Every Polymarket wallet scored against three metrics. Weights chosen to reward consistency over single lucky trades.
// composite_score.ts function computeScore(wallet: Wallet): number { const pnl = normalize(wallet.pnl, PNL_MAX); const wr = wallet.win_rate; const vol = normalize(wallet.volume, VOL_MAX); return ( pnl * 0.40 + wr * 0.35 + vol * 0.25 ); }
Score = (0.04 × 0.40) + (0.50 × 0.35) + (0.05 × 0.25) = 0.017 + 0.175 + 0.014= 0.205 raw → rescaled to 80–100 band → Score 84.1