Install
openclaw skills install @superior-ai/related-market-spreadUse when two Polymarket markets imply different probabilities for a linked outcome.
openclaw skills install @superior-ai/related-market-spreadUse this when the user asks for relative-value trades, discrepancy checks, linked outcomes, or questions like "this market is mispriced versus that one."
POST /v3/markets/search.Partial fit. Backtests built from filled TradeTick data are useful for checking whether the spread relationship has widened and then compressed in history. They cannot guarantee simultaneous fills or full cross-book liquidity.
Use this as a generated archetype: the strategy should be adapted in code before use, not treated as a finished edge.
Track the latest filled price for both legs. Enter when spread is above a threshold and exits when spread narrows or max holding duration expires.
TradeTick for both instruments.{
"primary_instrument_id": "AUTO_FROM_MARKET_A",
"secondary_instrument_id": "AUTO_FROM_MARKET_B",
"spread_entry": 0.08,
"spread_exit": 0.03,
"order_size": 10,
"max_holding_ticks": 120
}
| Knob | Effect |
|---|---|
spread_entry | Higher = only trade stronger relative-value discrepancies. |
spread_exit | Lower = wait for fuller normalization before exiting. |
max_holding_ticks | Lower = tighter time risk control if convergence does not happen. |
TradeTick replay cannot prove simultaneous execution across legs."This is a relative-value archetype, not a guaranteed edge. It is built from filled TradeTick backtests and exact market slug discovery first, then adapted into custom NautilusTrader code before any deployment."