📦 Polymarket Copytrading — Polymarket Whale Copytrading — 鲸鱼跟单交易

v1.0.0

在Polymarket上监控并自动复制高表现鲸鱼钱包的交易。通过Simmer平台执行交易,具备翻转检测、滑点检查、去重和仓位追踪等安全功能。适用于想要跟单鲸鱼、镜像钱包、跟随聪明钱或自动化预测市场仓位复制的用户。

1· 49·0 当前·0 累计
by @chokle (DC)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/4
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
high confidence
该技能的代码和元数据与其声称的跟单交易目的基本一致,但打包的自动化配置会以cron方式运行真实交易(与SKILL.md的'默认模拟交易'相矛盾)—— 这种不匹配和自动执行真实交易引发了安全担忧。
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/4/4

- Polymarket鲸鱼跟单器的初始版本。 - 根据可配置的过滤器(交易规模、回溯窗口、钱包列表)自动镜像Polymarket高表现鲸鱼钱包的交易。 - 包含安全功能,如翻转检测、滑点检查、去重和仓位追踪,避免冗余或风险交易。 - 默认支持模拟交易模式,CLI配置轻松切换真实交易和智能仓位调整。 - 可轻松自定义跟踪自己的钱包列表、按市场类别过滤,或扩展自动发现新鲸鱼。

无害

安装命令

点击复制
官方npx clawhub@latest install polymarket-whale-copytrade
🇨🇳 镜像加速npx clawhub@latest install polymarket-whale-copytrade --registry https://cn.longxiaskill.com

技能文档

Monitors a configurable list of high-performing Polymarket wallets and mirrors their recent trades — automatically.

This is a template. The default signal is on-chain trade activity from configured whale wallets. Remix it by swapping in your own wallet list, adding a Polymarket leaderboard scraper to auto-discover top traders, or layering a volume filter to only copy their highest-conviction trades. The skill handles all the plumbing (trade detection, market resolution, deduplication, safeguards). You provide the wallets.

Strategy

  • Every 15 minutes, scan configured whale wallets via the Polymarket CLOB API
  • Filter trades to the last lookback_minutes window (default: 30 min)
  • Skip trades below min_whale_trade_usd (default: $500) — only copy high-conviction moves
  • Resolve the Polymarket token ID to a Simmer market (searches by question, imports if needed)
  • Skip markets you already hold — no doubling up
  • Check Simmer context: skip on flip-flop warnings, high slippage, resolved markets
  • Mirror the trade with your configured position size
  • Tag all trades for per-skill volume attribution on Simmer

Requirements

  • SIMMER_API_KEY — your Simmer agent API key
  • simmer-sdk — installed via pip
  • No additional API keys needed (uses Polymarket's public CLOB + Gamma APIs)

Configuration

VariableDefaultDescription
SIMMER_API_KEYrequiredYour Simmer API key
TRADING_VENUEpolymarketsim, polymarket, or kalshi
SIMMER_COPYTRADE_WALLETSbuilt-in listComma-separated wallet addresses to track
SIMMER_COPYTRADE_MAX_POSITION10.0Max USD per copied trade
SIMMER_COPYTRADE_MAX_TRADES5Max trades per cron run
SIMMER_COPYTRADE_LOOKBACK_MINS30Minutes of trade history to scan
SIMMER_COPYTRADE_MIN_TRADE500Min USD value of whale trade to copy
SIMMER_COPYTRADE_SIZING_PCT0.05Portfolio % for smart sizing
SIMMER_COPYTRADE_SKIP_PAIDtrueSkip markets with 10% taker fee
Set via CLI:

python copytrading.py --set max_position_usd=25
python copytrading.py --set lookback_minutes=60

Usage

# Install
pip install simmer-sdk

# See which wallets you're tracking + their stats python copytrading.py --whales

# Dry run (default — no real trades) python copytrading.py

# Live trading python copytrading.py --live

# Portfolio-based position sizing (5% of balance per trade) python copytrading.py --live --smart-sizing

# Show open positions python copytrading.py --positions

# Show config python copytrading.py --config


Customizing Whale Wallets

The default list includes known high-volume Polymarket traders. To use your own:

export SIMMER_COPYTRADE_WALLETS="0xABC...,0xDEF...,0x123..."

Finding good wallets:

What makes a good whale to copy:

  • High win rate (>55%) across diverse markets, not just one category
  • Trades early — not right before resolution
  • Position sizes suggest conviction, not randomness

Remix Ideas

Auto-discover top wallets:

  • Query https://gamma-api.polymarket.com/leaderboard to dynamically update WHALE_WALLETS
  • Rank by 30-day P&L, take the top 10, refresh weekly

Filter by category:

  • Only copy trades in crypto, politics, or sports markets
  • Add a keyword filter to fetch_whale_recent_trades()

Conviction sizing:

  • Scale your copy size proportionally to the whale's position size
  • If whale bets $5k, bet 1% of that ($50)

Sentiment confirmation:

  • Only copy a whale trade if 2+ whales made the same move in the same window
  • Reduces noise from individual whale mistakes

Exit mirroring:

  • Detect when a whale exits a position and mirror the sell
  • Currently the skill copies entries only; exits rely on Simmer's auto stop-loss (50%)

Safety Rails

  • Flip-flop detection — skips markets where you've been reversing
  • Slippage check — skips illiquid markets (>15% estimated slippage)
  • Deduplication — never copies the same market twice in one run
  • Position check — skips markets you already hold
  • Paid market filter — optionally skips markets with 10% taker fee
  • Simmer default limits — $100/trade, $500/day, 50 trades/day (configurable via dashboard)
  • Dry run default — real trades require explicit --live

Links

数据来源:ClawHub ↗ · 中文优化:龙虾技能库