Polymarket Resolution Lattice Trader

v0.0.3

Trades Polymarket markets by detecting logical inconsistencies between related contracts such as earlier-vs-later deadlines and prerequisite-vs-downstream ev...

0· 192· 4 versions· 0 current· 0 all-time· Updated 16h ago· MIT-0

Resolution Lattice Trader

This is a template. The default signal is cross-market inconsistency detection across deadline lattices and prerequisite chains — remix it with better parsers, richer rule extraction, or external event ontologies. The skill handles all the plumbing (market discovery, trade execution, safeguards). Your agent provides the alpha.

Strategy Overview

Most prediction bots make one-market judgments: find a market, estimate whether YES is too cheap or too expensive, then size the trade.

This skill does something else. It builds a small logical graph across related Polymarket markets and looks for violations.

Examples:

  • Temporal monotonicity: "Will X happen before June?" cannot be more likely than "Will X happen before December?"
  • Prerequisite chains: "Will candidate X become president?" should not exceed "Will candidate X win the nomination?" when nomination is a necessary step.

When those relationships break, the market is not just wrong in an opinionated sense — it is internally inconsistent.

Signal Logic

Default Signal: Resolution-Lattice Inconsistency

  1. Discover markets with structurally linked wording such as before, by, nominee, president, approval, and similar milestone language
  2. Parse each market question into a coarse subject plus a relation type
  3. Group related markets into a local graph
  4. Score violations of:
    • earlier deadline <= later deadline
    • prerequisite event >= downstream event
  5. Trade only the leg with both:
    • a real graph inconsistency
    • threshold confirmation from YES_THRESHOLD / NO_THRESHOLD

This means the strategy is not trying to be smarter than the news. It is trying to be stricter than the market.

What Makes It Different

  • It is cross-market, not single-market
  • It uses logical constraints, not only keywords or narrative bias
  • It sizes conviction from inconsistency magnitude, not from raw extremeness alone

Current Constraint Families

1. Temporal Lattice

If two markets refer to the same event with different deadlines, the earlier deadline must be less likely than or equal to the later one.

If the market prices:

  • Will X happen before June 2026? = 44%
  • Will X happen before December 2026? = 37%

then the graph is broken. The strategy prefers:

  • NO on the earlier contract if it is already expensive enough
  • YES on the later contract if it is already cheap enough

2. Prerequisite Chain

If a downstream event requires an upstream event, the downstream contract should not be more likely.

Example:

  • Will Candidate X win the nomination? = 41%
  • Will Candidate X become president? = 53%

The graph implies:

  • nomination should not be lower than presidency
  • therefore the strategy looks for YES nomination and/or NO presidency

Safety & Execution Mode

The skill defaults to paper trading (venue="sim"). Real trades only with --live flag.

ScenarioModeFinancial risk
python trader.pyPaper (sim)None
Cron / automatonPaper (sim)None
python trader.py --liveLive (polymarket)Real USDC

autostart: false and cron: null mean nothing runs automatically until configured in Simmer UI.

Required Credentials

VariableRequiredNotes
SIMMER_API_KEYYesTrading authority. Treat as a high-value credential.

Tunables (Risk Parameters)

All declared as tunables in clawhub.json and adjustable from the Simmer UI.

VariableDefaultPurpose
SIMMER_MAX_POSITION35Max USDC per trade at full conviction
SIMMER_MIN_TRADE5Floor for any trade
SIMMER_MIN_VOLUME10000Min market volume filter (USD)
SIMMER_MAX_SPREAD0.07Max bid-ask spread
SIMMER_MIN_DAYS3Min days until resolution
SIMMER_MAX_POSITIONS6Max concurrent open positions
SIMMER_YES_THRESHOLD0.38Buy YES only if market probability <= this value
SIMMER_NO_THRESHOLD0.62Sell NO only if market probability >= this value

Edge Thesis

Prediction markets are often analyzed as if each contract stands alone. In practice, users trade them as separate stories, while many of them are mathematically or procedurally linked. That leaves pockets where the book is not coherent.

This skill treats the market set as a probability lattice and trades the repair of that lattice.

Dependency

simmer-sdk by Simmer Markets (SpartanLabsXyz)

Version tags

latestvk971bs0rc8k968w9mse44t6nes85prhs