polyglot works Polymarket order books natively in Rust; hip4poly arbitrages Hyperliquid HIP-4 against Polymarket in TypeScript. Eight strategies, one Strategy contract, one alpha spine.
All eight strategies across five live panels — cross-venue books, divergence gauge, streaming signals with verdicts, session PnL and the dry-run console.
A 1-second tick loop over every active market. Hard guards clamp quoting to the linear zone of the binary book.
Two-sided quotes around fair value — edge anchoring, inventory and signal skew, churn filter.
Buys YES and NO when the pair costs under $1.00 after fees — a locked, risk-free spread.
Scalps depth asymmetry: leans against the thin side, size scaling with the imbalance.
Confidence-gated alpha follower — linear sizing, aggressive limit one cent through mid.
Auto-matches markets across venues and routes every action to its venue's executor. DRY_RUN=true by default.
Fires when a matched pair diverges past fees — buy the cheap venue, sell the rich one.
Spread quoting on HIP-4 books with inventory skew and requote thresholds.
Watches for one venue lagging its pair, then picks off the stale quote before it updates.
Arbs logically-linked outcomes when their combined books break coherence.
Ingestors watch feeds, chain flows and prices; eight deterministic rules turn events into candidates; every candidate gets a Claude verdict before broadcast. Fleets subscribe over WebSocket and size positions by confidence — below the gate, nothing fires.
Same math as binary_arb.rs — when YES + NO drops under 0.9400 (2% discount + 4% fees), the spread is free money.
0 arbs locked this session · $0.000 edge/share accumulated
Every price and size is string-based decimal math — rust_decimal in Rust, string decimals in TypeScript.
DRY_RUN=true out of the box. Live orders require explicit credentials; without them every fleet is read-only.
A market matcher pairs venues automatically; each action routes to its venue's executor — HIP-4 or Polymarket CLOB.
Quoting clamps to the linear zone of the binary book — no orders near 0 or 1 where edges lie.
The ops room runs a full simulation of all eight strategies — books, signals, strikes and PnL — right in your browser. No keys, no orders, no risk.
Enter the ops roompredator-bots — standalone home for the fleets · implementation lives in the marketpredator monorepo