diff --git a/README.md b/README.md index eb487c4..30f4cb9 100644 --- a/README.md +++ b/README.md @@ -296,10 +296,16 @@ Cached bundle prices are never allowed to open positions. Run `npm run evaluate:dominance` to inspect logically nested threshold contracts using executable prices. The corrected August 19 scan tested 807 eligible pairs -across 500 active events and found zero positive pairs after estimated costs. An -earlier parser had mistaken Over/Under outcome labels for Yes/No and reported -false opportunities; the label-aware scanner and live engine now reject that -failure mode. +across 500 active events and found zero positive pairs after estimated costs. The +August 20 rerun tested 888 eligible pairs and found one current candidate: YES on +MetaMask FDV above $2B plus NO on FDV above $3B cost 0.994 per pair after the +half-cent-per-leg execution allowance, against a guaranteed minimum $1 payout +when both contracts share the same event terms. Build 75 adds these same-event, +same-wording dominance pairs to Value Hunter's live scanner. Both legs must open +together, cached/offline prices cannot create an entry, and mismatched wording, +non-Yes/No labels, inadequate liquidity, and non-positive margins are rejected. +An earlier parser had mistaken Over/Under labels for Yes/No; the label-aware +scanner and live engine retain a regression test for that failure mode. The expanded event-clustered run loaded history for 498 of the 500 highest-volume resolved markets with no fetch failures. No side, price band, category, trend, diff --git a/api/state.js b/api/state.js index 12f0633..f3206fe 100644 --- a/api/state.js +++ b/api/state.js @@ -232,7 +232,7 @@ export function compactSuggestion(s) { signal_type: s.signal_type, trade_ready: s.trade_ready, entry_candidate: s.entry_candidate, audited_observation_only: s.audited_observation_only, adaptive_promotion: s.adaptive_promotion, watch_only: s.watch_only, jump_risk: s.jump_risk, requires_live: s.requires_live, - bundle_id: s.bundle_id, bundle_side: s.bundle_side, bundle_cost_per_unit: s.bundle_cost_per_unit, + bundle_id: s.bundle_id, bundle_side: s.bundle_side, bundle_logic: s.bundle_logic, bundle_cost_per_unit: s.bundle_cost_per_unit, bundle_payout_per_unit: s.bundle_payout_per_unit, bundle_net_profit_per_unit: s.bundle_net_profit_per_unit, bundle_legs: s.bundle_legs, days_to_resolution: s.days_to_resolution, drivers: s.drivers, rationale: s.rationale, diff --git a/index.html b/index.html index e7f19c7..a28494d 100644 --- a/index.html +++ b/index.html @@ -341,7 +341,7 @@ footer{margin-top:34px;padding-top:22px;border-top:1px solid var(--border);color