# πŸ† Winning Wallet Finder Find Polymarket wallets with a **real, statistically-verifiable edge**, test whether copying them actually makes money β€” **with real fees, lag, and slippage** β€” and copy-trade them with a 24/7 bot (paper today, live-capable). This started as "copy the smart money." Along the way we tested β€” and ruled out β€” six systematic public-data strategies, and found that the *only* signal that holds up is **statistical improbability**: wallets that win far more than the prices they paid imply. This repo is the tooling for finding, validating, and copying those wallets, plus an honest record of everything that didn't work. > **Read [`FINDINGS.md`](FINDINGS.md) for the research story.** TL;DR: detection > works; profitable copying is *plausible but unproven* β€” every backtest here is > in-sample by construction, and **the July 2026 forward test (live now) is the > arbiter.** Treat headline returns as ceilings, not forecasts. --- ## The system today (July 2026) Three deployed pieces + one static dashboard: | piece | where it runs | what it does | |-------|--------------|--------------| | **daily pipeline** (`live/daily.sh`) | this Mac, launchd **08:00** (runs on wake if the Mac was asleep) | refresh the bet cache β†’ 5-gate skill scan β†’ fee-aware sharp selection β†’ conviction floors β†’ backtest book β†’ publish JSON feeds to GitHub | | **copybot worker** (`copybot.py` via `host/start.sh`) | **Fly.io app `wwf-copybot`, region `arn` (Stockholm), 24/7** β€” migrated off Railway 2026-07-06: Railway ran it in a US region, which Polymarket's IP geoblock would 403 the moment orders got real; Stockholm is unrestricted AND ~25ms from the CLOB's eu-west-2 primaries. Every boot self-checks the geo-gate (`host/geocheck.py`) | **push mode**: an Alchemy address-activity webhook (`copybot follow set`, Polygon) pings `POST /alchemy` the moment a followed wallet trades (~2–5s detection), signature-verified; a 60s heartbeat settles/publishes and a 5-min backstop poll catches dropped pushes. Paper-copies with real fees/lag/slippage, settles at CLOB resolution, commits its book back to the repo | | **Discord digest** (`live/discord_daily.py`) | end of the daily pipeline | one message/day: the sharp list with profile links + 30-day conviction stats (per-trade pings retired 2026-07-04; the old Alchemy watcher lives in `archive/webhook_receiver.py`) | | **dashboard** | [jaxperro.com/trading](https://jaxperro.com/trading) (static, in the `jaxperro` repo) | renders the three JSON feeds: live bot book, backtest book, sharp table | **The July 2026 live test:** a fresh $1,000 paper book (started 2026-07-02 on Railway; moved to Fly.io Stockholm 2026-07-06 with the book intact) following the wallet set in **`live/copybot.paper.json`** β€” the single source of truth (currently 5 volume + 3 whale wallets; the dashboard hero lists them live). Two stake classes: **volume** wallets (4% of equity/bet) are copied on their **conviction bets only** (auto p80 floor derived at boot); **whale** wallets (12%/bet) are copied on **every trade** β€” they're the big-clip informed holders the trusted-row re-validation surfaced (see FINDINGS "The holder blind spot"). Every stake is **capped at the signal's own bet size**. Every fill records detection lag, price slippage, and the taker fee; missed bets are recorded and settled hypothetically. If this month's *measured* numbers hold up, real money follows (see [`LIVE_TEST.md`](LIVE_TEST.md)). ``` data layer selection execution display ────────── ───────── ───────── ─────── live/cache.duckdb ──▢ trust.py (trusted-row filter) copybot.py (Fly arn) ─▢ jaxperro.com/trading (schema v2: skill.py (5-gate funnel) Β· class % of equity, Β· copybot_live.json 35k wallets, conviction_scan.py (p80 + z_all) capped at the (live bot book) 20M+ resolved bets, validate_timing.py (fee-aware signal's own bet Β· portfolio.json token-keyed, copy replay β†’ watch_sharps) Β· taker fees modeled (rolling backtest) archival; portfolio.py (rolling replay of Β· lag/slip per fill Β· watch_sharps.json TRUSTED rows only backtest.json's wallet set) Β· missed-bet ledger (sharp table) may score) sync_floors.py (bot parity) Β· CLOB settle + redeem ``` --- ## Operating the system (the cheat-sheet a new maintainer needs) | task | how | |------|-----| | **add / remove / reclass a LIVE wallet** | edit the `wallets` list in `live/copybot.paper.json` (`{"wallet","name","class":"volume"\|"whale","floor":123?}` β€” floor optional, auto p80 at boot; whales ignore floors) then run **`./live/deploy_bot.sh`** β€” it validates, previews, **syncs the Alchemy webhook's address list** (`live/sync_webhook.py`, Notify API), commits, pushes, restarts the Fly machine, and confirms the boot banner. Fully self-contained β€” nothing to click in any dashboard | | **backtest any wallet set** | edit `live/backtest.json` (same entry shape) β†’ `python3 live/portfolio.py`; ad-hoc without touching the dashboard: `python3 portfolio.py --wallets 0xabc,0xdef:whale --days 14 --out /tmp/t.json` | | **promote a wallet to live** | prove it in `backtest.json` first, copy the same entry into `copybot.paper.json`, run `deploy_bot.sh` | | **watch the live bot** | `flyctl logs --app wwf-copybot` (one summary line per 60s heartbeat); the book is also committed as `live/copybot_live.json` and rendered on the dashboard | | **restart / redeploy the bot** | `flyctl apps restart wwf-copybot` (config/code changes: the worker clones the repo fresh at boot, so a restart IS the deploy). **Changes to `host/` or `fly.toml` need an image rebuild: `flyctl deploy --remote-only`.** Secrets: `flyctl secrets set K=V` (applies with an automatic restart). Keep it ONE machine β€” Fly loves creating a second for "high availability", and two bots = two writers on one book (`flyctl scale count 1`) | | **run the daily pipeline manually** | `cd live && bash daily.sh` (launchd runs it 08:00; ~40 min, mostly collect). Never run two at once β€” the cache is single-writer | | **refresh just the sharp list** | `cd live && python3 conviction_scan.py && python3 validate_timing.py` | | **daily Discord digest** | sent by `live/discord_daily.py` at the end of `daily.sh`; webhook = `daily_webhook` in gitignored `config.json` | | **go real-money** | **execute [`LIVE_ROLLOUT.md`](LIVE_ROLLOUT.md)** β€” the phased plan (invariants β†’ code prep β†’ funding β†’ supervised fills β†’ full edge-case matrix β†’ graduation gate); `LIVE_TEST.md` is the per-session runbook it wraps | Three moving parts talk to each other: this repo (research + bot + feeds), the `jaxperro` repo (static dashboard reading this repo's raw JSON feeds), and the Fly.io app `wwf-copybot` (Stockholm; the old Railway project `magnificent-kindness` is stopped and can be deleted). The bot **commits its own state/feed back to this repo** every few minutes β€” always `git pull --rebase --autostash` before you push (every script here already does). --- ## File map | path | role | |------|------| | `live/` | **the current system**: cache, scanners, sharp selection, backtest, daily pipeline ([live/README](live/README.md)) | | `live/trust.py` | the trusted-row filter every selector must read through (see gotchas 8–9) | | `live/backtest.json` Β· `live/copybot.paper.json` | the two wallet-set configs: backtest experiments vs. the live paper bot (same entry shape) | | `live/deploy_bot.sh` | one-command live-bot deploy: validate β†’ preview β†’ Alchemy address sync β†’ commit β†’ push β†’ Fly restart β†’ confirm boot | | `live/sync_webhook.py` | diffs the follow set against the push-mode Alchemy webhook and patches add/remove (token in gitignored `config.json`) | | `fly.toml` Β· `fly.Dockerfile` | Fly.io app config (wwf-copybot, region `arn`, single machine, `:8080` webhook ingress) + the worker image (python + git; the bot code itself is cloned fresh at boot) | | `host/geocheck.py` | 3-probe geo-gate verdict (ipinfo β†’ Polymarket's `/api/geoblock` β†’ unauth CLOB order POST); runs at every boot, `GEOCHECK_ONLY=1` = probe-and-idle for testing a new host/region without a second book-writer | | `live/discord_daily.py` | the daily Discord digest (the only Discord output) | | `copybot.py` | the copy-trading bot: push/poll trigger β†’ follow filter β†’ execution engine (paper + live) | | `archive/copytrade.py` | the execution engine the bot reuses: sizing, risk gates, price guard, paper/live executors | | `host/start.sh` | 24/7 worker bootstrap for Fly/any VPS (geo-gate check, clones repo, resumes committed state) | | `LIVE_TEST.md` Β· `preflight_live.py` Β· `redeem.py` | real-money runbook, read-only credential preflight, on-chain redemption | | `insider.py` | the original detector: z-score, pre-resolution timing, fresh-wallet flags, funding-cluster rings | | `smart_money.py` | shared HTTP helper + survivorship-corrected win-rate dashboard (`:8899`) | | `archive/webhook_receiver.py` | retired 2026-07-04: Alchemy webhook β†’ per-trade Discord pings (replaced by `live/discord_daily.py`'s daily digest) | | `wide/` | frozen-subgraph bulk scanner (1.76M wallets, historical only β€” subgraph froze Jan 2026) | | `archive/` | everything retired, kept honest ([archive/README](archive/README.md)): the six failed strategies, earlier research sweeps (`hunt/huntwide/oos/copyback`), the superseded live selection layer (`live-research/`), the scrapped Polymarket-US venue probe (`us-venue/`), and retired infra (`retired-infra/`: Railway config, Mac launchd runner, GH-Actions cron) | --- ## The core idea: z-score, not win rate Every Polymarket bet has an entry price that *is* the market's estimate of its odds (a YES at 30Β’ β‡’ market thinks 30%). If you have no edge, over many bets you win about the **sum of your entry prices** β€” call it *expected wins*. ``` z = (actual wins βˆ’ expected wins) / standard deviation ``` - **z = 0** β†’ you won exactly what your prices implied β†’ no edge. - **z = 3** β†’ ~1-in-740 by luck. **z = 5** β†’ ~1-in-3.5M. Why this beats win rate: a wallet that bets longshots and wins 14% when the odds implied 8% has a huge edge (high z) despite a low win rate; a wallet buying 90Β’ favorites and winning 90% has zβ‰ˆ0. Win rate is also **survivorship-biased** on Polymarket (losing shares sit unredeemed and invisible β€” see FINDINGS). And even true win rate **over-counts scalpers** β€” so the final selection metric is **fee-adjusted Copy P&L**: what a flat-$50 copy of the wallet's conviction bets *actually* returns after taker fees (replay entries, mirror exits, settle at CLOB resolution). Judge by Copy P&L, never win rate. --- ## Quickstart for a new developer ```bash git clone https://github.com/jaxperro/winning-wallet-finder cd winning-wallet-finder pip3 install duckdb # the only dep for research/selection cp config.example.json config.json # secrets live here (gitignored) # selection layer (live/) β€” everything reads the local bet cache cd live python3 enumerate.py 30 # build a candidate pool (last 30d markets) python3 collect.py # pull their bets into cache.duckdb (resumable) python3 skill.py # 5-gate skill funnel -> watch_skilled.json python3 conviction_scan.py # conviction-bet profile scan python3 validate_timing.py # fee-aware copy replay -> watch_sharps.json python3 portfolio.py # the backtest book -> portfolio.json ./daily.sh # or: the whole thing, end to end # copy bot (repo root) β€” paper by default, no orders ever without --live python3 copybot.py --config live/copybot.paper.json --state /tmp/s.json --poll 60 python3 copybot.py --test-wallet 0x… # dry-run one wallet's latest trade # live trading (real money): read LIVE_TEST.md, then pip3 install py-clob-client web3 python3 preflight_live.py # read-only credential/balance check ``` The cache is the point: **every score re-runs in seconds from `live/cache.duckdb`** (~33k wallets / 19M+ resolved bets) instead of hours of API pulls. Schema v2 is token-keyed, provenance-tagged, and archival (refreshes upsert instead of wiping; failed pulls are never cached as "no bets") β€” details in [`live/README.md`](live/README.md). ### Config & secrets (all gitignored) | file | holds | |------|-------| | `live/copybot.paper.json` | **committed** (no secrets): the live paper bot's wallet set + classes + follow/risk params β€” deploy with `live/deploy_bot.sh` | | `config.json` | `daily_webhook` (Discord digest) Β· `alchemy_notify_token` + `alchemy_webhook_id` (webhook address sync) Β· `alchemy_signing_key` (local push-mode runs) Β· Alchemy RPC key Β· a legacy curated watchlist + floors (`sync_floors.py`) | | `config.live.json` | live-trading credentials (`private_key`, `funder_address`) + tiny test caps β€” see `LIVE_TEST.md` | | Fly `wwf-copybot` secrets | `GITHUB_TOKEN` (fine-grained PAT, contents-RW on this repo β€” the bot commits its state/feed back) Β· `ALCHEMY_SIGNING_KEY` (presence = push mode; remove it to fall back to 60s polling) Β· `DISCORD_WEBHOOK`. The webhook ingress is `https://wwf-copybot.fly.dev/alchemy` (Alchemy webhook `wh_blf4qjjvfdbqs9mc`, address list auto-synced by `deploy_bot.sh`) | --- ## How the copy bot models reality The whole point of the July test is that paper β‰ˆ live. Every mechanism the backtest and bot share: - **Taker fees** (Polymarket V2, since 2026-03-30): `fee = shares Γ— rate Γ— p(1βˆ’p)`, sports rate 0.03 β€” charged on every marketable entry and exit; redeeming at resolution is free. Fee-adjusted Copy P&L also drives *selection*. - **Lag + slippage**: the bot fills at the live CLOB ask at detection β€” since 2026-07-06 that's **push mode** (Alchemy address-activity webhook β†’ `POST /alchemy`, ~2–5s) rather than the 60s poll; per-fill `detect_lag_s` and `slippage_pct` are logged, and the backtest applies a +0.5%/~90s haircut. Poll-era measurements: ~39s avg lag, **βˆ’4.0% avg slip** (the asymmetric price guard means better-than-their-price fills are common). - **Dynamic sizing, two wallet classes, their-bet ceiling**: each bet stakes a fraction of current working equity set by the followed wallet's class β€” **`volume`** (default, 4%, conviction bets only) or **`whale`** (12%, every trade), fractions in `follow.class_pct` β€” **and is never larger than the signal's own position size**: when the percentage works out to more than the wallet actually bet, the copy mirrors their exact amount (you can't out-conviction the signal, and fills stay within size the market demonstrably absorbed). Stakes compound both ways and halve while equity is below 80% of its high-water mark. The rule binds **per market** β€” adds that mirror a sharp scaling in grow with *their* position, never past it. The old $250 stake cap and banked-reserve profit ratchet were retired 2026-07-06 (backtest and bot together). A per-event correlation cap exists (`risk.max_per_event`), **off**. - **Entry cap 0.95**: entries above 95Β’ are skipped (`follow.max_entry`) β€” the June sweep showed >95Β’ favorites *lower* final equity even while winning (slip + fee eat the 1–3% payouts; the capital compounds better elsewhere). - **Asymmetric price guard**: a price *below* the sharp's fill is never blocked (better odds, by rule); only adverse drift >5% is skipped. - **Conviction filter (volume class only)**: copy a wallet's top-20%-by-stake bets. Floors are **auto-derived at boot** (p80 of recent position stakes from the data-api β€” the worker has no cache) unless pinned with `"floor":` in the config; whale-class wallets bypass floors entirely (follow-all). - **Missed-bet ledger**: every bet the bot *couldn't* take (cash deployed, price ran up) is recorded and settled hypothetically β€” capacity costs are measured, not invisible. - **Settlement**: winners settle at authoritative CLOB winner flags (see the gotcha below β€” it caused the project's worst bug); live mode auto-redeems on-chain (`redeem.py`; neg-risk markets need manual redeem). Safety: paper is the default; live requires `mode:"live"` **and** `--live` **and** a typed confirmation phrase, under hard caps. The GH-Actions cron runner is retired (GitHub throttled `*/5` to ~2h in practice β€” it copied 1 of ~104 qualifying trades in June; the always-on worker replaced it). --- ## Data sources | Source | Used for | |--------|----------| | `data-api.polymarket.com` | positions, trades, activity (+`eventSlug`), leaderboard | | `gamma-api.polymarket.com` | market metadata (NB: `condition_ids` filter returns nothing for resolved markets) | | `clob.polymarket.com` | order books, prices, **authoritative resolution** (`winner` flags), market slugs | | `lb-api.polymarket.com` | the wallet's OWN all-time P&L/volume (`/profit`, `/volume`) β€” the sharps table's **PM P&L** sanity anchor (see gotcha 10) | | Alchemy (Polygon) | the push-mode address-activity webhook (instant trade detection) + funding-cluster traces; Notify API (`dashboard.alchemy.com/api`) drives the automatic address-list sync | **Candidate next sources** (researched 2026-07, not yet wired in): | Source | Would unlock | |--------|--------------| | [Goldsky Turbo Pipelines](https://docs.goldsky.com/chains/polymarket) | per-fill order events with timestamps for *every* wallet (Polymarket killed subgraphs with the 2026-04-28 v2 migration) β€” fixes the cache's two blind spots: no entry times, and position-level aggregation hiding scalps. See also [warproxxx/poly_data](https://github.com/warproxxx/poly_data), [Bitquery](https://docs.bitquery.io/docs/examples/polymarket-api/) | | [PolymarketData.co](https://www.polymarketdata.co/) | historical order-book snapshots (Aug 2025+) β†’ depth-aware fill model, the known step before sizing up | | Pinnacle closing lines via [SharpAPI](https://sharpapi.io/sportsbooks/pinnacle-odds-api) / [sportsapis.dev](https://sportsapis.dev/historical-odds) / [BettingIsCool](https://api.bettingiscool.com/) (Pinnacle closed its public API 2025-07) | closing-line-value as an independent "was this bet sharp" ground truth; a Pinnacle *suspension* on an ITF/esports match is itself a fixing signal | | [Polysights Insider Finder](https://gizmodo.com/tracking-insider-trading-on-polymarket-is-turning-into-a-business-of-its-own-2000709286) | cross-check for flagged insider wallets | ## Gotchas a maintainer must know 1. **CLOB `winner` flags: `false` means "not yet", not "lost".** Every token of an *unresolved* market reports `winner: false`; resolution flips exactly one to `true`. Any settle/replay logic must gate on `any(winner is True)` first. Treating `false` as lost made the bot settle live in-play positions as instant losses (four winning bets booked βˆ’$180 on 2026-07-02). Slow pollers never see this β€” markets genuinely resolve between checks β€” which is why it survived June. 2. **`eventSlug` sub-splits one game** (`…-2026-07-01-more-markets`, `…-second-half-result`): group by the `…-YYYY-MM-DD` prefix (`event_key()` in `copytrade.py` / `portfolio.py`) for anything per-event. 3. **Win rate over-counts scalpers and is survivorship-biased** β€” never select on it; the fee-adjusted Copy P&L replay is the selection metric. 4. **`/closed-positions` sorts by `realizedPnl` by default** β€” always pass `sortBy=TIMESTAMP` or you sample only the biggest wins. 5. **`cache.duckdb` is single-writer** β€” a running `collect.py` blocks even read-only connections; the daily pipeline serializes for this reason (and caps stale refreshes at `STALE_CAP=2500`/run so it stays daily). 6. **GitHub Actions `*/5` cron actually fires ~every 1.5–2.5h** β€” never use it for anything latency-sensitive (it copied 1 of ~104 trades in June). 7. **GitHub Pages soft-limits ~10 deploys/hour** on the `jaxperro` repo β€” batch dashboard pushes (see that repo's README). 8. **Cached `res_t`/`won` can be fake for high-volume wallets.** When the data-api omits `endDate`, `res_t` falls back to the wallet's *sell time* and `won` is the price direction at pull β€” a scalper's sold-at-profit position masquerades as a resolved win (ArbTraderRookie's rows were 100% this). Selection must read **trusted rows only** via `live/trust.py` (cross-wallet consensus `res_t` + pulled-after-resolution + `resolved` not False). Also: never judge a held edge on a replay window shorter than the wallet's entryβ†’resolution lead β€” that's how the long-lead holders were being filtered out (see FINDINGS "The holder blind spot"). 9. **Polymarket rewrites `endDate` after resolution**, so exact-match consensus on `res_t` breaks for freshly re-pulled wallets (this collapsed the sharp list 25β†’7 on the first scheduled run). v2 rows with `resolved=TRUE` are self-certifying in `trust.py`; consensus only gates legacy rows. Related: `daily.sh` invalidates watchlist wallets by **deleting** their `pulled` row β€” a transiently failed re-pull then hides the wallet's whole history from exact `pulled_at` checks (trust.py has a 14-day fallback for this). 10. **Polymarket geoblocks ORDER PLACEMENT by IP** (reads are open everywhere β€” which is why the paper bot never noticed Railway was in a US region). Restricted list has surprises: US, UK, France, Germany, Italy, Netherlands, Poland, Singapore, Australia, Ontario, **Brazil** (docs.polymarket.com/developers/CLOB/geoblock). `host/geocheck.py` gives a 3-probe verdict from any box and runs at every worker boot; **never go live from a box that doesn't print `VERDICT: TRADABLE`** β€” and the machine's location doesn't relocate *you* (trade live from Colombia months, paper from US months). 11. **All-Time / Conv P&L is the wallet's ANTI-SURVIVORSHIP realized track record.** Every DECIDED position at its actual result: redeemed/sold closed positions (Polymarket's own `realizedPnl`, `cache.closed_exits`) PLUS resolved-but-unredeemed positions still sitting in `/positions` β€” bets that already won/lost and the wallet never redeemed (mostly **abandoned losers** at $0). `_open_split` in validate_timing pulls current positions and routes those decided ones into the realized total (`cashPnl` = their outcome), leaving only genuinely in-flight positions in the **Open P&L** column. This is the whole point of the project surfacing: PM `/profit` **under-counts abandoned losers**, unevenly β€” Coteykens' PM subtracts them (realized $66k βˆ’ $52k walked-away = $14k = PM), oliman2's does not ($181k βˆ’ $161k = $20k true, yet PM says $112k). So where our All-Time reads **lower** than PM, PM is the survivorship-biased number and **ours is the truth** (oliman2 and JuiceFarm look elite on redeemed-only P&L, ~$20k/$32k once the losers they walked from are counted). This *replaced* the old hold-to-resolution reconstruction (`won Γ— entry Γ— size`), which diverged by up to 10Γ— and flipped signs β€” four bugs killed with it: the 2,000-row pull cap, both-sides double-drop, `initialValue = 0` mis-sizing, and corrupt near-epoch `res_t`. Win % is the share of decided positions that *made money*. --- ## The research (how we got here) **The 5-gate funnel** (`live/skill.py`): a wallet is "skilled" only if it clears `n β‰₯ 15 resolved bets` β†’ `z > 0` β†’ `Benjamini–Hochberg FDR @5%` β†’ `split-half out-of-sample persistence` β†’ `not a market-maker` (all resolved-only: early-sold positions in unended markets are marks, not outcomes, and never score). **The clean test (June 2026):** high-win-rate "favorite-rider" wallets looked +23.6% in-sample and lost βˆ’7.4% once selected without look-ahead β€” exactly the LBS/Yale "~60% of lucky winners become losers" result. **Don't copy win rates.** **The repeatable find:** score wallets on their **conviction bets** (top 20% by stake, per-wallet p80) over **trusted rows only** (`trust.py`), gated on `z_all > 2` (whole-book skill β€” it ~doubled pooled forward copy-ROI in the Mayβ†’June tournament) and a $50 median-stake dust floor. Trained ≀May, validated June: 30/38 stayed profitable forward, **+21.4% pooled**. A **fee-aware flat-$50 copy replay** plus a trailing-90d trusted-record gate then keeps the wallets actually profitable to *copy* β†’ currently **~30 copy-positive holders** in `watch_sharps.json`, refreshed daily. The niche the top holders live in is **low-tier tennis (ITF/qualifiers) and tier-3 esports** β€” informed money with multi-day leads, i.e. copyable, with **ban/regime risk as the real tail** (one top wallet's API feed went dark for an hour mid-analysis). **The backtest** (`live/portfolio.py`): a **rolling N-day replay** of whatever wallet set `live/backtest.json` holds (default: the live follow set), with fees/lag/class sizing/their-bet ceiling. Three-whale config showed ~+9,800% over the trailing 30d β€” but the whales were *selected* partly on that window, so treat every headline as an in-sample ceiling. July, live, is the test. **What didn't work** (see `FINDINGS.md` + `archive/`): copy-trading raw, win-rate ranking, LP reward farming, binary & multi-outcome arb, cross-venue PM↔Kalshi arb β€” all efficient or illusory. --- ## The honest verdict - **Detection works.** z + timing + funding clusters reliably surface anomalous wallets. - **Copying is promising but unproven.** Selection is fee-aware and execution-realistic now, but every historical return in this repo is in-sample. The running July book β€” real lag, real fees, measured slippage, missed bets counted β€” is the first number that deserves trust. - **Scale carefully.** The their-bet ceiling keeps every copy within size the market demonstrably absorbed from the signal β€” but you fill *after* the signal moved the price, so large late-compounding clips are still optimistic; a depth-aware fill model (order-book snapshots) is the known next step. - **The edge has a landlord.** The strongest wallets look like informed money in fixable niches; assume any month could be the last, re-select weekly (the daily pipeline does), and take profits out as you go.