← 返回 Skills 市场
diagnostikon

Polymarket 24h Cross Asset Sync Trader

作者 diagnostikon · GitHub ↗ · v0.0.2 · MIT-0
cross-platform ✓ 安全检测通过
161
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install polymarket-24h-cross-asset-sync-trader
功能描述
Trades cross-asset correlation divergences in 5-minute crypto "Up or Down" markets on Polymarket. When BTC, ETH, SOL, DOGE, XRP, and BNB have overlapping tim...
使用说明 (SKILL.md)

\r \r

24h Cross-Asset Sync Trader\r

\r

This is a template.\r The default signal is cross-asset divergence detection in 5-minute crypto "Up or Down" markets — remix it with additional correlation models, momentum overlays, or real-time price feeds.\r The skill handles all the plumbing (market discovery, window grouping, trade execution, safeguards). Your agent provides the alpha.\r \r

Strategy Overview\r

\r Polymarket lists 5-minute "Up or Down" markets for multiple crypto assets in the same time window:\r \r

  • "Bitcoin Up or Down - March 28, 4:05AM-4:10AM ET"\r
  • "Ethereum Up or Down - March 28, 4:05AM-4:10AM ET"\r
  • "Solana Up or Down - March 28, 4:05AM-4:10AM ET"\r \r Each market is traded independently by retail. But crypto assets are highly correlated — BTC/ETH at ~0.85, BTC/SOL at ~0.75. When the group consensus says "Up" but one asset diverges to "Down," the outlier almost always snaps back.\r \r This skill groups markets by time window, computes the consensus direction, identifies outliers, and trades the correction.\r \r

The Edge: Crypto Correlation Arbitrage\r

\r In traditional markets, pairs traders exploit correlated instruments that temporarily diverge. This is the prediction market equivalent for short-duration crypto bets.\r \r

How It Works\r

\r

  1. Group by window: Find all "Up or Down" markets sharing the same 5-minute time slot\r
  2. Compute consensus: Average the "Up probability" across all assets in the window\r
  3. Detect outliers: Find assets whose direction or magnitude deviates from the group mean\r
  4. Trade the correction: Bet the outlier moves toward consensus\r \r

Example\r

\r | Asset | Direction | Probability | Up Prob |\r |-------|-----------|-------------|---------|\r | BTC | Up | 58% | 58% |\r | ETH | Up | 56% | 56% |\r | SOL | Up | 54% | 54% |\r | DOGE | Down | 55% | 45% |\r \r Group mean Up probability: 53%. DOGE diverges at 45% (8% deviation). Trade: buy YES on DOGE (bet it goes Up like the rest).\r \r

Why This Works\r

\r

  1. Retail trades in silos — most users view each asset's market independently and don't cross-reference correlated assets in the same window\r
  2. High correlation is structural — crypto assets move together because they share macro drivers (risk-on/off, USD strength, regulatory news)\r
  3. 5-minute windows amplify correlation — in such short periods, idiosyncratic moves are rare; the dominant factor is market-wide sentiment\r
  4. Mean-reversion is fast — divergences in correlated assets correct within minutes as arbitrageurs and market makers step in\r \r

Signal Logic\r

\r

  1. Discover all crypto "Up or Down" markets via keyword search\r
  2. Parse each question: extract asset (BTC/ETH/SOL/DOGE/XRP/BNB), date, time window\r
  3. Group into windows by (date, start-end time)\r
  4. For each window with 2+ assets:\r
    • Compute the group mean "Up probability"\r
    • Identify assets deviating by more than MIN_DIVERGENCE\r
    • Determine trade direction: push the outlier toward consensus\r
  5. Rank by deviation magnitude\r
  6. Trade only opportunities that also pass threshold gates (YES_THRESHOLD / NO_THRESHOLD)\r
  7. Size by conviction (divergence magnitude + threshold distance), not flat amount\r \r

Safety & Execution Mode\r

\r The skill defaults to paper trading (venue="sim"). Real trades only with --live flag.\r \r | Scenario | Mode | Financial risk |\r |---|---|---|\r | python trader.py | Paper (sim) | None |\r | Cron / automaton | Paper (sim) | None |\r | python trader.py --live | Live (polymarket) | Real USDC |\r \r autostart: false and cron: null mean nothing runs automatically until configured in Simmer UI.\r \r

Required Credentials\r

\r | Variable | Required | Notes |\r |---|---|---|\r | SIMMER_API_KEY | Yes | Trading authority. Treat as a high-value credential. |\r \r

Tunables (Risk Parameters)\r

\r All declared as tunables in clawhub.json and adjustable from the Simmer UI.\r \r | Variable | Default | Purpose |\r |---|---|---|\r | SIMMER_MAX_POSITION | 40 | Max USDC per trade at full conviction |\r | SIMMER_MIN_TRADE | 5 | Floor for any trade |\r | SIMMER_MIN_VOLUME | 5000 | Min market volume filter (USD) |\r | SIMMER_MAX_SPREAD | 0.08 | Max bid-ask spread |\r | SIMMER_MIN_DAYS | 0 | Min days until resolution (0 = allow same-day) |\r | SIMMER_MAX_POSITIONS | 8 | Max concurrent open positions |\r | SIMMER_YES_THRESHOLD | 0.38 | Buy YES only if market probability \x3C= this |\r | SIMMER_NO_THRESHOLD | 0.62 | Sell NO only if market probability >= this |\r | SIMMER_MIN_DIVERGENCE | 0.04 | Min cross-asset divergence to trigger a trade |\r \r

Edge Thesis\r

\r Crypto assets share macro risk factors: BTC dominance, USD index, regulatory headlines, and institutional flow. In a 5-minute window, the probability that BTC goes Up while ETH goes Down is very low — their 5-min return correlation exceeds 0.80.\r \r When Polymarket shows a divergence across correlated assets in the same time slot, it is almost always due to:\r \r

  • Asymmetric liquidity — one asset's market has a large directional order that hasn't been arbitraged\r
  • Stale pricing — the market maker on one asset hasn't updated to reflect the latest tick\r
  • Retail noise — a speculator has moved one market without considering cross-asset consistency\r \r This skill treats the multi-asset window as a correlation lattice and trades the repair.\r \r

Dependency\r

\r simmer-sdk by Simmer Markets (SpartanLabsXyz)\r

安全使用建议
This skill appears coherent for its described trading purpose. Before installing: (1) confirm you trust the Simmer service and the simmer-sdk package (review its source or pin a known-good version); (2) store SIMMER_API_KEY with least privilege and be aware live trading only occurs with explicit --live; start in paper mode to validate behavior; (3) audit the simmer-sdk/network activity if you require extra assurance (pip packages can run arbitrary code); and (4) monitor any automated runs and set conservative tunables (max position, min trade) until you're confident in performance.
功能分析
Type: OpenClaw Skill Name: polymarket-24h-cross-asset-sync-trader Version: 0.0.2 The skill implements a legitimate cross-asset correlation trading strategy for Polymarket crypto markets using the 'simmer-sdk'. The logic in 'trader.py' correctly parses market data, calculates statistical divergences, and executes trades based on configurable risk parameters. It includes safety features such as a paper-trading default (sim mode) and lacks any indicators of data exfiltration, malicious execution, or prompt injection.
能力标签
cryptorequires-sensitive-credentials
能力评估
Purpose & Capability
Name/description, required credential (SIMMER_API_KEY), and code (trader.py) all relate to discovering Polymarket 'Up or Down' markets and placing trades via the Simmer SDK. The pip dependency on 'simmer-sdk' in clawhub.json is proportionate to the stated purpose.
Instruction Scope
SKILL.md instructions and the code focus on market discovery, grouping windows, detecting divergences, and executing trades (paper by default). The skill only references expected environment variables (SIMMER_API_KEY and tunables) and does not instruct reading unrelated files or exfiltrating data to third-party endpoints outside Simmer/Polymarket.
Install Mechanism
This is instruction + code (no explicit install spec), but clawhub.json lists a pip dependency on 'simmer-sdk'. Installing a pip package is a typical mechanism for this kind of skill, but pip packages are arbitrary code — you should review/verify the simmer-sdk source or install from a controlled environment before granting credentials.
Credentials
The only required secret is SIMMER_API_KEY (declared). The other environment values are non-secret tunables (limits, thresholds) and are declared in clawhub.json. No unrelated credentials or config paths are requested.
Persistence & Privilege
always is false and autostart/cron are disabled by default; the skill does not request permanent system-wide privileges. It calls client.apply_skill_config if available (a local Simmer runtime helper) but does not modify other skills' configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install polymarket-24h-cross-asset-sync-trader
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /polymarket-24h-cross-asset-sync-trader 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.0.3
SDK resilience: try/except runt apply_skill_config
v0.0.2
fix: add _client.live=True so --live actually routes to polymarket-venue for real USDC trades
v1.0.1
Fix apply_skill_config AttributeError for new Simmer SDK compatibility
v1.0.0
- Initial release of the 24h Cross-Asset Sync Trader skill. - Trades cross-asset correlation divergences in 5-minute crypto "Up or Down" markets on Polymarket (BTC, ETH, SOL, DOGE, XRP, BNB). - Detects outlier asset in a group and trades it toward the consensus direction, based on divergence from group mean. - Includes built-in safeguards, risk tunables, and paper/live trading modes (live trading only with explicit flag). - Supports adjustable parameters for trade sizing, market filtering, and divergence thresholds via Simmer UI.
元数据
Slug polymarket-24h-cross-asset-sync-trader
版本 0.0.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

Polymarket 24h Cross Asset Sync Trader 是什么?

Trades cross-asset correlation divergences in 5-minute crypto "Up or Down" markets on Polymarket. When BTC, ETH, SOL, DOGE, XRP, and BNB have overlapping tim... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 161 次。

如何安装 Polymarket 24h Cross Asset Sync Trader?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install polymarket-24h-cross-asset-sync-trader」即可一键安装,无需额外配置。

Polymarket 24h Cross Asset Sync Trader 是免费的吗?

是的,Polymarket 24h Cross Asset Sync Trader 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Polymarket 24h Cross Asset Sync Trader 支持哪些平台?

Polymarket 24h Cross Asset Sync Trader 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Polymarket 24h Cross Asset Sync Trader?

由 diagnostikon(@diagnostikon)开发并维护,当前版本 v0.0.2。

💬 留言讨论