← 返回
数据分析 Key 中文

Polymarket Crypto Onchain Trader

Trades Polymarket prediction markets on Bitcoin, Ethereum, Solana price milestones, ETF inflows, halving events, and DeFi protocol milestones. Uses three sta...
在Polymarket预测市场上交易比特币、以太坊、Solana价格里程碑、ETF流入、减半事件和DeFi协议里程碑。使用三种策略...
diagnostikon
数据分析 clawhub v0.0.3 2 版本 99850.3 Key: 需要
★ 0
Stars
📥 667
下载
💾 28
安装
2
版本
#latest

概述

Crypto & On-Chain Trader

> This is a template.

> The default signal is keyword-based market discovery combined with conviction-based sizing and onchain_bias() — three stacked structural edges, no external API required.

> The skill handles all the plumbing (market discovery, trade execution, safeguards). Your agent provides the alpha.

Strategy Overview

Crypto markets have the most sophisticated on-chain data infrastructure of any asset class — and Polymarket's retail participants almost never use it. This skill exploits three documented structural edges without any API calls:

  1. Instrument type confidence — ETF flow data is published daily by Farside/CoinGlass before Polymarket retail reprices. Protocol upgrade dates are posted on GitHub weeks ahead. Retail prices these as uncertain when they aren't.
  2. BTC halving cycle phase — the halving date is mathematically predictable. The post-halving price cycle (consolidation → bull → distribution → bear) is historically documented. BTC price milestone markets get conviction adjusted by current cycle position.
  3. Asian regulatory session timing — crypto regulatory news from Korea, Japan, and China breaks during Asian business hours. Polymarket is US-dominated — repricing lags 15–30 minutes.

Signal Logic

Default Signal: Conviction-Based Sizing with On-Chain Bias

  1. Discover active crypto markets on Polymarket
  2. Compute base conviction from distance to threshold (0% at boundary → 100% at p=0/p=1)
  3. Apply onchain_bias() — three stacked layers: instrument confidence × BTC cycle phase × timing
  4. Size = max(MIN_TRADE, conviction × bias × MAX_POSITION) — capped at MAX_POSITION
  5. Skip markets with spread > MAX_SPREAD or fewer than MIN_DAYS to resolution

On-Chain Bias (built-in, no API required)

Layer 1 — Instrument Type Confidence

Instrument typeMultiplierWhy
---------
Spot ETF inflows (BlackRock, Fidelity)1.30xDaily flow data (Farside/CoinGlass) published before Polymarket reprices — biggest info gap in crypto
BTC halving event markets1.25xHalving date is mathematically predictable (~210,000 blocks) — retail misprices near-certain events
Protocol upgrade / hard fork dates1.20xEthereum EIP / Solana upgrade timelines on GitHub and core dev calls — public weeks ahead
DeFi TVL / protocol milestones1.10xDeFiLlama tracks TVL in real-time — "will protocol reach $X TVL" markets lag published data
BTC price milestones1.10x × cycleHalving cycle multiplier applied on top (see Layer 2)
ETH / SOL / general ATH milestones1.10xOn-chain data gives partial directional edge
Stablecoin / crypto regulation1.05xRegulatory calendar partially predictable
NFT / Ordinals milestones0.75xNarrative-driven — no on-chain predictive signal
Memecoin / altcoin hype0.70xPure retail sentiment — zero predictive signal, trade very small

Layer 2 — BTC Halving Cycle Phase (BTC price markets only)

The Bitcoin halving (every ~210,000 blocks, ~4 years) creates a historically documented price cycle. For BTC price milestone markets, the base type confidence is multiplied by the current cycle phase:

PhaseDays post-halvingMultiplierHistorical pattern
------------
Early consolidation0–180×1.05Miners sell, market absorbs supply shock
Bull phase181–540×1.20Historically strongest 12-month returns
Distribution541–900×1.00Price peaks, direction uncertain
Bear phase901+×0.85Fade bullish BTC price targets

Last halving: April 19, 2024 (block 840,000). Next: ~April 2028. The skill prints btc_cycle_day=N on startup so you always know where you are.

Layer 3 — Asian Session Timing

Crypto regulatory news from South Korea, Japan, and China breaks during Asian business hours. Polymarket is US-dominated:

ConditionMultiplier
------
Regulatory/ban/approval question + 01:00–09:00 UTC1.15x — US retail asleep, repricing lag
Regulatory/ban/approval question + 13:00–21:00 UTC0.95x — US prime time, priced within minutes

Combined and capped at 1.40x. An ETF inflow market in Asian hours → 1.30 × 1.15 = 1.40x cap. A memecoin question at any time → 0.70x — position sized near MIN_TRADE floor.

Keywords Monitored

Bitcoin, BTC, Ethereum, ETH, Solana, SOL, crypto, ETF, halving,
all-time high, ATH, $100k, $200k, stablecoin, USDC, Tether, DeFi,
Uniswap, Aave, Layer 2, Arbitrum, Base, BlackRock, spot ETF, inflows,
hash rate, mempool, TVL, total value locked, EIP, hard fork, upgrade,
Pectra, Dencun, funding rate, open interest, exchange outflow, whale, on-chain

Remix Signal Ideas

  • Farside BTC ETF flows: Replace market.current_probability with daily net flow implied probability — trade the divergence between institutional flow data and Polymarket retail pricing directly
  • Glassnode free tier: SOPR, NUPL, exchange inflow/outflow — feed into p to trade on-chain sentiment vs market price
  • CoinGlass funding rates: Extreme positive funding = leveraged longs = squeeze risk → fade YES on price targets; extreme negative → fade NO
  • DeFiLlama API: Real-time TVL for any protocol — compare to market-priced threshold for TVL milestone markets

Safety & Execution Mode

The skill defaults to paper trading (venue="sim"). Real trades only with --live flag.

ScenarioModeFinancial risk
---------
python trader.pyPaper (sim)None
Cron / automatonPaper (sim)None
python trader.py --liveLive (polymarket)Real USDC

autostart: false and cron: null — nothing runs automatically until you configure it in Simmer UI.

Required Credentials

VariableRequiredNotes
---------
SIMMER_API_KEYYesTrading authority. Treat as high-value credential.

Tunables (Risk Parameters)

All declared as tunables in clawhub.json and adjustable from the Simmer UI.

VariableDefaultPurpose
---------
SIMMER_MAX_POSITION35Max USDC per trade (reached at 100% conviction)
SIMMER_MIN_VOLUME15000Min market volume filter (USD) — crypto needs liquidity
SIMMER_MAX_SPREAD0.06Max bid-ask spread (6%) — tighter than other traders
SIMMER_MIN_DAYS3Min days until resolution — crypto moves faster
SIMMER_MAX_POSITIONS8Max concurrent open positions
SIMMER_YES_THRESHOLD0.38Buy YES if market price ≤ this value
SIMMER_NO_THRESHOLD0.62Sell NO if market price ≥ this value
SIMMER_MIN_TRADE5Floor for any trade (min USDC regardless of conviction)

Dependency

simmer-sdk by Simmer Markets (SpartanLabsXyz)

  • PyPI: https://pypi.org/project/simmer-sdk/
  • GitHub: https://github.com/SpartanLabsXyz/simmer-sdk

版本历史

共 2 个版本

  • v0.0.3 当前
    2026-05-01 06:35 安全 安全
  • v1.0.0
    2026-03-19 18:37 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

data-analysis

Excel / XLSX

ivangdavila
创建、检查和编辑 Microsoft Excel 工作簿及 XLSX 文件,支持可靠的公式、日期、类型、格式、重算及模板保留功能。
★ 368 📥 140,484
ai-intelligence

Polymarket Ai Tech Trader

diagnostikon
在Polymarket预测市场上交易AI模型发布、科技IPO、产品发布、GPU基础设施里程碑以及AI监管事件的预测。
★ 0 📥 714
data-analysis

Data Analysis

ivangdavila
{"answer":"数据分析与可视化。查询数据库、生成报告、自动化电子表格,将原始数据转化为清晰可行的见解。适用于:(1) 您……"}
★ 198 📥 65,129