← Back to Skills Marketplace
diagnostikon

Polymarket 24h Cross Asset Sync Trader

by diagnostikon · GitHub ↗ · v0.0.2 · MIT-0
cross-platform ✓ Security Clean
161
Downloads
0
Stars
0
Active Installs
3
Versions
Install in OpenClaw
/install polymarket-24h-cross-asset-sync-trader
Description
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...
README (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

Usage Guidance
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.
Capability Analysis
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.
Capability Tags
cryptorequires-sensitive-credentials
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install polymarket-24h-cross-asset-sync-trader
  3. After installation, invoke the skill by name or use /polymarket-24h-cross-asset-sync-trader
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug polymarket-24h-cross-asset-sync-trader
Version 0.0.2
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 3
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 161 downloads so far.

How do I install Polymarket 24h Cross Asset Sync Trader?

Run "/install polymarket-24h-cross-asset-sync-trader" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Polymarket 24h Cross Asset Sync Trader free?

Yes, Polymarket 24h Cross Asset Sync Trader is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Polymarket 24h Cross Asset Sync Trader support?

Polymarket 24h Cross Asset Sync Trader is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Polymarket 24h Cross Asset Sync Trader?

It is built and maintained by diagnostikon (@diagnostikon); the current version is v0.0.2.

💬 Comments