用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Superior-Trade/superior-skills --skill related-market-spread命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Request and use a Superior Trade API key for https://api.superior.trade. Use when an agent needs to onboard a user by email, request an API key with POST /auth/sign-in/magic-link, set up x-api-key authentication, or recover from missing/invalid Superior Trade credentials (401/403) before backtesting or deploying a strategy.
Use when the user asks what's hot, what's moving, if there's any alpha, "show me squeeze setups", "what's the setup on ETH", "is SOL coiled", "should I deploy NEAR", or any market-scan or pair-drilldown question. Surfaces live scoring for squeeze fuel, stealth accumulation, coiled spring and basis flipping across Hyperliquid alts and HIP-3, choosing the strongest timeframe per pair.
Use when backtesting, deploying, funding, or debugging a live trading strategy on Hyperliquid through the Superior Trade API — writing Freqtrade configs and strategy code, running backtest sweeps, checking wallet balances, depositing USDC, trading HIP-3 stock/commodity perps, or diagnosing a deployment that will not start or trade.
基于 SOC 职业分类
正在显示 SKILL.md
| name | related-market-spread |
| description | Use when two Polymarket markets imply different probabilities for a linked outcome. |
| metadata | {"version":"0.1.0","updated":"2026-06-17T00:00:00.000Z"} |
Use 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."