Overview
The terminal implements five independent pattern detectors. Each detector runs in parallel every 30 seconds. Signals from multiple patterns can fire in the same cycle, and a maximum of 2 signals per pattern are surfaced per cycle to avoid notification flooding.All detectors only surface markets where
acceptingOrders=true — meaning live order-book activity is confirmed before any signal fires.Pattern 1 — Intersection
Strongest Signal Monitors the most recently active followed wallets for trades made within the last 2 hours. When 2 or more wallets appear in the same market, an intersection is recorded. The most commonly chosen outcome across those wallets is surfaced as the signal direction. Why it works: When multiple independent informed traders simultaneously enter the same market and side, it’s a reliable indicator of shared non-public information or strong conviction.Pattern 2 — Pre-News Trading
Detects markets experiencing abnormally high short-term volume relative to lifetime volume — a reliable indicator of information asymmetry prior to a news event. The detector fetches 30 active markets ordered by 24h volume and filters for those where:Pattern 3 — Quick Flip
Targets markets where the price is near 50% probability — specifically in the 38–62% range.Pattern 4 — Contrarian Plays
Identifies low-probability outcomes (5–22%) that remain open and liquid.Pattern 5 — Position Growth (Wallet Follow)
Scans the current open positions of all followed wallets. Any open position worth ≥ $500 in an actively tradeable market generates a signal.Signal Deduplication
Signals will not re-fire for the same market/pattern combination within 24 hours. This is managed via an in-memoryseen_trades dictionary with a 24-hour TTL.