Polymarket 24h Sports Line Curve Trader

v0.0.2

Trades structural mispricings in sports over/under markets by reconstructing the implied probability curve across multiple O/U line values for the same game...

0· 177·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for diagnostikon/polymarket-24h-sports-line-curve-trader.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Polymarket 24h Sports Line Curve Trader" (diagnostikon/polymarket-24h-sports-line-curve-trader) from ClawHub.
Skill page: https://clawhub.ai/diagnostikon/polymarket-24h-sports-line-curve-trader
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install polymarket-24h-sports-line-curve-trader

ClawHub CLI

Package manager switcher

npx clawhub@latest install polymarket-24h-sports-line-curve-trader
Security Scan
Capability signals
CryptoRequires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description, SKILL.md, clawhub.json, and trader.py all describe the same activity (finding O/U curve violations and trading). The only required credential (SIMMER_API_KEY) and the simmer-sdk dependency are appropriate for a Simmer/Polymarket trading client.
Instruction Scope
SKILL.md instructs running trader.py, defaults to paper/sim mode, and requires an explicit --live flag for real trades. The runtime instructions and included code focus on market parsing, curve detection, and trade execution; they do not instruct reading unrelated system files or exfiltrating data.
Install Mechanism
There is no custom install spec; dependencies are installed via pip (simmer-sdk on PyPI / GitHub). Pip installation is expected for this functionality but carries the usual third-party package risk — verify the simmer-sdk package and its source if you don't already trust it.
Credentials
The skill requires a single trading API key (SIMMER_API_KEY) and exposes configurable tunables via environment variables (declared in clawhub.json). No unrelated secrets or system config paths are requested.
Persistence & Privilege
always is false and autostart is false; the automaton entrypoint exists but nothing runs automatically without explicit configuration. The skill may be invoked autonomously per platform defaults, which is expected for skills of this type.
Assessment
This package appears coherent for a Polymarket/Simmer trading bot. Before installing, verify the simmer-sdk package source and review its code (pip packages can contain arbitrary code). Treat SIMMER_API_KEY as a high-value credential: restrict its permissions if possible, store it securely, and test thoroughly in paper (sim) mode before using --live. Confirm autostart/cron remain disabled in your runtime if you don't want continuous automation. If you want extra assurance, request a full review of the simmer-sdk and the complete trader.py file (to ensure no hidden behavior in the truncated portion).

Like a lobster shell, security has layers — review code before you run it.

latestvk971rztsk7k6c4se92h4yhywwn853s2q
177downloads
0stars
4versions
Updated 1w ago
v0.0.2
MIT-0

24h Sports Line Curve Trader

This is a template. The default signal is implied O/U curve violation detection across sports markets -- remix it with additional sports, line types, or cross-venue feeds. The skill handles all the plumbing (market discovery, curve construction, trade execution, safeguards). Your agent provides the alpha.

Strategy Overview

Polymarket lists multiple over/under lines for the same sporting event:

  • "Team A vs Team B O/U 5.5" = 50%
  • "Team A vs Team B O/U 6.5" = 46%
  • "Team A vs Team B O/U 7.5" = 29%

Retail trades each market as an isolated bet. But together, these markets form an implied probability curve -- higher totals must always be less likely for the OVER side.

This skill reconstructs that curve and finds where it is mathematically broken.

The Edge: Sports Line Curve Arbitrage

Violation Type 1: Monotonicity Break

The probability of going OVER a lower line must always be greater than or equal to going OVER a higher line:

P(O/U 5.5 OVER) >= P(O/U 6.5 OVER) >= P(O/U 7.5 OVER)

If a higher line is priced above a lower line, the curve is broken -- pure structural arbitrage.

Violation Type 2: Tennis Set vs Match Inconsistency

For tennis, the match total always equals or exceeds the Set 1 total. Therefore:

P(Match O/U X OVER) >= P(Set 1 O/U X OVER)

If a Set 1 O/U market is priced higher than the equivalent Match O/U market, the relationship is violated.

Why This Works

  1. Retail trades in silos -- most users view each O/U line independently and do not cross-reference the full line ladder
  2. No market maker enforcement -- unlike sportsbooks, there is no central entity maintaining curve consistency across lines
  3. Mathematical, not opinion -- the violations are provable inconsistencies in the implied distribution
  4. Applies across sports -- football, basketball, tennis, esports (kills, maps), baseball, hockey

Signal Logic

  1. Discover all sports O/U markets via keyword search (O/U, total goals, total kills, etc.)
  2. Parse each question: extract game/match name, O/U line value, scope (set or match)
  3. Group into curves by (game, scope)
  4. For each curve with 2+ points:
    • Check monotonicity: P(O/U X OVER) must decrease as X increases
    • Check tennis set-vs-match consistency
  5. Rank violations by magnitude
  6. Trade only violations that also pass threshold gates (YES_THRESHOLD / NO_THRESHOLD)
  7. Size by conviction (violation magnitude), not flat amount

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_POSITION40Max USDC per trade at full conviction
SIMMER_MIN_TRADE5Floor for any trade
SIMMER_MIN_VOLUME5000Min market volume filter (USD)
SIMMER_MAX_SPREAD0.08Max bid-ask spread
SIMMER_MIN_DAYS0Min days until resolution (0 = allow same-day)
SIMMER_MAX_POSITIONS8Max concurrent open positions
SIMMER_YES_THRESHOLD0.38Buy YES only if market probability <= this
SIMMER_NO_THRESHOLD0.62Sell NO only if market probability >= this
SIMMER_MIN_VIOLATION0.03Min curve violation magnitude to trigger a trade

Edge Thesis

Traditional sportsbooks have professional line-setters who enforce consistency across O/U lines for the same game. Polymarket has no such mechanism -- each O/U market is priced by its own order book with its own liquidity pool. This creates systematic micro-inconsistencies in the implied distribution, especially when:

  • New O/U lines are added at previously unlisted values
  • Large directional flow pushes one line without propagating to neighbors
  • Market makers leave gaps during low-liquidity hours
  • Tennis set-level markets diverge from match-level markets

This skill treats the O/U line ladder as a probability curve and trades the repair.

Dependency

simmer-sdk by Simmer Markets (SpartanLabsXyz)

Comments

Loading comments...