Files
winning-wallet-finder/live/conviction_scan.py
T
jaxperro 1d754353c2 selection: trusted-row layer + holder-gate fix — the holder blind spot
Two data bugs were hiding the best copy targets (FINDINGS 'The holder
blind spot'):

* live/trust.py (new): only score rows whose res_t matches the market's
  consensus resolution time across >=2 wallets, pulled after resolution,
  resolved != False. Kills the res_t=ts fallback poison that let scalpers
  masquerade as 99%-win holders (ArbTraderRookie's rows were 100% this).
* conviction_scan.py: trusted rows only; p80 conviction cutoff from the
  train window only (look-ahead leak); new gates z_all>2 (whole-book z,
  ~doubles pooled forward copy-ROI) and median conviction stake >=$50
  (dust filter). 55 wallets selected, forward 30/38 profitable, +21.4%
  pooled (was 284 selected, +16.0%).
* validate_timing.py: the held-edge gates now read the trailing-90d
  trusted conviction record via trust.conviction_record instead of the
  replay's held leg, which is structurally ~all-unresolved for week-lead
  holders (whale 0x73afc816 showed 'held 0-0, 21 unresolved' and was
  rejected at 100% fwd win). 25 copy-positive holders now, including
  Stavenson (51-0), the whale (112-4) and iohihoo (98-10).
* cache.py: query() helper so trust.py shares the single in-process
  connection instead of fighting the single-writer lock.
* README: gotcha 8 (fake res_t/won) + candidate next data sources
  (Goldsky pipelines, PolymarketData order books, Pinnacle CLV,
  Polysights); FINDINGS: dated section correcting the iohihoo/ArbTrader
  scalper-trap verdicts as winner=False-bug artifacts.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 09:08:35 -04:00

141 lines
6.7 KiB
Python

#!/usr/bin/env python3
"""Find more wallets with the top-wallet profile: their HIGH-CONVICTION (large-
stake) bets win often on genuinely-uncertain (~0.4-0.6) markets — real edge, not
favorite-riding — and it persists out-of-sample.
TRAIN = conviction bets resolved before June 1. TEST = June 1+ resolved.
A "conviction" bet = one in the top 20% (p80) of THAT wallet's own stake sizes.
2026-07-03: the p80 cutoff is now computed over TRAIN rows only (the full-window
cutoff let test-period stakes leak into the threshold), and everything reads
TRUSTED rows only (see trust.py — the res_t=ts fallback poison made scalpers
look like 99%-win holders and inflated both train and forward stats).
Profile gates (on TRAIN conviction bets):
* >= MIN_N conviction bets
* win rate >= WIN_MIN
* avg entry in [ENTRY_LO, ENTRY_HI] (excludes 0.9 favorite-riders)
* copy-ROI > 0 and z significant (BH-FDR)
* z_all > Z_ALL_MIN over ALL trusted train bets (whole-book skill — the
single strongest add in the 2026-07-03 May->June tournament: it roughly
doubled pooled forward copy-ROI at every tier)
* median conviction stake >= MIN_MED_STAKE (dust wallets betting $2-$6 clips
aren't followable and their fills aren't reproducible)
Then validate forward and count how many keep the profile.
"""
import math, os, time
import duckdb
import trust
HERE = os.path.dirname(__file__)
JUN1 = time.mktime(time.strptime("2026-06-01", "%Y-%m-%d"))
CONV_PCTILE = 0.80 # "conviction" = a bet in the top 20% of the wallet's own stakes
MIN_N = 12 # train conviction bets needed
WIN_MIN = 0.65
ENTRY_LO, ENTRY_HI = 0.30, 0.75
MIN_TEST = 3
FDR_Q = 0.05
Z_ALL_MIN = 2.0 # whole-book z gate (all trusted train bets, any size)
MIN_MED_STAKE = 50.0 # median train conviction stake floor (dust filter)
def r(p, won): return (1 - p) / p if won else -1.0
def sf(z): return 0.5 * math.erfc(z / math.sqrt(2))
def stats(bets):
n = len(bets); wins = sum(1 for b in bets if b[1])
exp = sum(b[0] for b in bets); var = sum(b[0] * (1 - b[0]) for b in bets) or 1e-9
return n, wins, 100 * wins / n, sum(r(b[0], b[1]) for b in bets) / n, \
(wins - exp) / math.sqrt(var), sum(b[0] for b in bets) / n
def main():
con = duckdb.connect(os.path.join(HERE, "cache.duckdb"), read_only=True)
now = int(time.time())
# TRUSTED rows only (trust.py): consensus res_t kills the res_t=ts fallback
# poison; pulled_at >= E and resolved-is-not-False kill stale price marks.
# Conviction cutoff = p80 of the wallet's TRAIN-window positive stakes (the
# old full-window cutoff leaked test-period stake sizes into selection).
rows = con.execute(
f"WITH {trust.cte(now)}, "
"thr AS (SELECT wallet, quantile_cont(size, ?) AS t "
f" FROM trusted WHERE res_t < {JUN1} GROUP BY wallet) "
"SELECT b.wallet, b.p, b.won, b.res_t, b.size "
"FROM trusted b JOIN thr ON b.wallet = thr.wallet "
"WHERE b.size >= thr.t",
[CONV_PCTILE]).fetchall()
# whole-book skill over ALL trusted train bets (any size) — the z_all gate
allz = dict(con.execute(
f"WITH {trust.cte(now)} "
"SELECT wallet, (sum(won::INT) - sum(least(0.999,greatest(0.001,p)))) "
" / sqrt(greatest(sum(least(0.999,greatest(0.001,p)) "
" * (1 - least(0.999,greatest(0.001,p)))), 1e-9)) "
f"FROM trusted WHERE res_t < {JUN1} GROUP BY wallet").fetchall())
byw = {}
for w, p, won, rt, sz in rows:
byw.setdefault(w, []).append((max(0.001, min(0.999, p or 0)), won, rt or 0, sz or 0))
cand = []
for w, bets in byw.items():
tr = [(p, won) for p, won, rt, _ in bets if rt < JUN1]
if len(tr) < MIN_N:
continue
med_stake = sorted(sz for p, won, rt, sz in bets if rt < JUN1)[len(tr) // 2]
z_all = allz.get(w, 0.0)
n, wins, wr, roi, z, ap = stats(tr)
if (wr >= WIN_MIN * 100 and ENTRY_LO <= ap <= ENTRY_HI and roi > 0
and z_all > Z_ALL_MIN and med_stake >= MIN_MED_STAKE):
te = [(p, won) for p, won, rt, _ in bets if rt >= JUN1]
tm = stats(te) if len(te) >= MIN_TEST else None
cand.append(dict(w=w, n=n, wr=wr, roi=roi, z=z, ap=ap, tm=tm,
ntest=len(te), z_all=z_all, med_stake=med_stake))
# FDR on the edge p-values
ps = sorted(sf(c["z"]) for c in cand)
k = 0
for i, p in enumerate(ps, 1):
if p <= FDR_Q * i / len(ps): k = i
thr = ps[k - 1] if k else 0.0
sel = sorted([c for c in cand if sf(c["z"]) <= thr and thr > 0],
key=lambda c: c["roi"], reverse=True)
print(f"wallets with >= {MIN_N} TRUSTED conviction bets (top {1-CONV_PCTILE:.0%} by train stake) pre-June: {len(byw):,} scanned")
print(f"matching the profile (win>= {WIN_MIN:.0%}, entry {ENTRY_LO}-{ENTRY_HI}, +ROI, "
f"z_all>{Z_ALL_MIN:g}, med stake>=${MIN_MED_STAKE:g}, FDR-significant): {len(sel)}\n")
fwd = [c for c in sel if c["tm"]]
if fwd:
kept = sum(1 for c in fwd if c["tm"][2] >= WIN_MIN * 100 and c["tm"][3] > 0)
prof = sum(1 for c in fwd if c["tm"][3] > 0)
from math import comb
nf = len(fwd); pt = sum(comb(nf, j) for j in range(prof, nf + 1)) / 2 ** nf
poolnum = sum(c["tm"][3] * c["ntest"] for c in fwd); poolden = sum(c["ntest"] for c in fwd)
print(f"FORWARD (June conviction bets, {len(fwd)} wallets w/ >= {MIN_TEST}):")
print(f" {prof}/{nf} stayed profitable (binomial p={pt:.4f}) · "
f"{kept}/{nf} kept the full profile (win>= {WIN_MIN:.0%} AND +ROI)")
print(f" pooled forward conviction copy-ROI: {poolnum/poolden:+.1%}\n")
h = f"{'tr_win':>7}{'tr_roi':>7}{'tr_z':>6}{'entry':>6}{'tr_n':>5}{'fw_win':>7}{'fw_roi':>7}{'fw_n':>5} wallet"
print(h); print("-" * len(h))
for c in sel[:35]:
t = c["tm"]
fw = f"{t[2]:.0f}%" if t else "—"; fr = f"{t[3]:+.0%}" if t else "—"
print(f"{c['wr']:>6.0f}%{c['roi']:>+6.0%}{c['z']:>6.1f}{c['ap']:>6.2f}{c['n']:>5}"
f"{fw:>7}{fr:>7}{c['ntest']:>5} {c['w']}")
import json
json.dump([{"wallet": c["w"], "name": c["w"][:10], "train_win": round(c["wr"], 1),
"train_conv_roi": round(c["roi"], 3), "train_z": round(c["z"], 2),
"z_all": round(c["z_all"], 2), "med_stake": round(c["med_stake"]),
"avg_entry": round(c["ap"], 2), "train_n": c["n"],
"fwd_win": round(c["tm"][2], 1) if c["tm"] else None,
"fwd_conv_roi": round(c["tm"][3], 3) if c["tm"] else None,
"fwd_n": c["ntest"]} for c in sel],
open(os.path.join(HERE, "conviction_wallets.json"), "w"), indent=2)
print(f"\n-> conviction_wallets.json ({len(sel)} wallets)")
if __name__ == "__main__":
main()