Install
openclaw skills install polymarket-24h-equity-strike-traderTrades structural mispricings in equity/stock price-threshold markets by reconstructing the implied probability curve across strike levels for the same company and period, detecting monotonicity breaks and range-sum inconsistencies in strike ladders for PLTR, MSFT, NVDA, TSLA, SpaceX, Nasdaq-100, and other equity markets.
openclaw skills install polymarket-24h-equity-strike-traderThis is a template. The default signal is implied-CDF violation detection across equity price-threshold markets -- remix it with additional tickers, curve-fitting models, or cross-venue price feeds. The skill handles all the plumbing (market discovery, curve construction, trade execution, safeguards). Your agent provides the alpha.
Polymarket lists equity strike-ladder markets analogous to options chains:
Retail trades each market as an isolated bet. But together, these markets form an implied probability distribution curve across strike levels.
This skill reconstructs that curve and finds where it is mathematically broken.
In traditional options markets, market makers enforce no-arbitrage pricing across strikes. Polymarket has no such mechanism -- each market is its own order book.
The probability of being above a lower price must always be >= being above a higher price:
P(PLTR > $152) >= P(PLTR > $153) >= P(PLTR > $154)
If a higher strike is priced above a lower strike, the curve is broken.
A "between" market's price must equal the difference of two "above" markets:
P($370 < MSFT < $380) == P(MSFT > $370) - P(MSFT > $380)
When a market has exhaustive bins (e.g., Tesla deliveries), all bins must sum to ~100%:
P(<350k) + P(350-375k) + P(375-400k) + P(>400k) ~= 100%
YES_THRESHOLD / NO_THRESHOLD)The skill defaults to paper trading (venue="sim"). Real trades only with --live flag.
| Scenario | Mode | Financial risk |
|---|---|---|
python trader.py | Paper (sim) | None |
| Cron / automaton | Paper (sim) | None |
python trader.py --live | Live (polymarket) | Real USDC |
autostart: false and cron: null mean nothing runs automatically until configured in Simmer UI.
| Variable | Required | Notes |
|---|---|---|
SIMMER_API_KEY | Yes | Trading authority. Treat as a high-value credential. |
All declared as tunables in clawhub.json and adjustable from the Simmer UI.
| Variable | Default | Purpose |
|---|---|---|
SIMMER_MAX_POSITION | 40 | Max USDC per trade at full conviction |
SIMMER_MIN_TRADE | 5 | Floor for any trade |
SIMMER_MIN_VOLUME | 5000 | Min market volume filter (USD) |
SIMMER_MAX_SPREAD | 0.08 | Max bid-ask spread |
SIMMER_MIN_DAYS | 0 | Min days until resolution (0 = allow same-day) |
SIMMER_MAX_POSITIONS | 8 | Max concurrent open positions |
SIMMER_YES_THRESHOLD | 0.38 | Buy YES only if market probability <= this |
SIMMER_NO_THRESHOLD | 0.62 | Sell NO only if market probability >= this |
SIMMER_MIN_VIOLATION | 0.03 | Min curve violation magnitude to trigger a trade |
Traditional options markets have market makers who enforce curve consistency (no-arbitrage pricing). Polymarket has no such mechanism -- each market is priced by its own order book with its own liquidity pool. This creates systematic micro-inconsistencies in the implied distribution, especially when:
This skill treats the equity strike ladder as a probability lattice and trades the repair.
simmer-sdk by Simmer Markets (SpartanLabsXyz)