Agent Skillsmjunaidca/polymarket-skills › polymarket-monitor

polymarket-monitor

GitHub

监控Polymarket预测市场价格变动、成交量激增及价差变化。支持设置多市场价格警报或单市场实时快照,通过JSON输出结构化数据,需先获取Token ID。

polymarket-monitor/SKILL.md mjunaidca/polymarket-skills

触发场景

monitor prices price alert watch market track prices notify me price change polymarket alerts market watch price movement volume spike spread monitoring track odds prediction market alerts continuous monitoring price tracker market surveillance

安装

npx skills add mjunaidca/polymarket-skills --skill polymarket-monitor -g -y
更多选项

非标准路径

npx skills add https://github.com/mjunaidca/polymarket-skills/tree/main/polymarket-monitor -g -y

不安装直接使用

npx skills use mjunaidca/polymarket-skills@polymarket-monitor

指定 Agent (Claude Code)

npx skills add mjunaidca/polymarket-skills --skill polymarket-monitor -a claude-code -g -y

安装 repo 全部 skill

npx skills add mjunaidca/polymarket-skills --all -g -y

预览 repo 内 skill

npx skills add mjunaidca/polymarket-skills --list

SKILL.md

Frontmatter
{
    "name": "polymarket-monitor",
    "author": "polymarket-skills",
    "version": "1.0.0",
    "description": "Use this skill whenever the user wants to monitor, watch, or track Polymarket prediction market prices over time. This includes setting up price alerts, watching for significant price movements, tracking spread changes, monitoring volume spikes, or getting notified about market activity. Trigger on: monitor prices, price alert, watch market, track prices, notify me, price change, polymarket alerts, market watch, price movement, volume spike, spread monitoring, track odds, prediction market alerts, continuous monitoring, price tracker, market surveillance."
}

Polymarket Monitor

Monitor live Polymarket prediction markets for price changes, volume spikes, and spread movements. Outputs structured JSON alerts when thresholds are crossed. All endpoints are read-only and require no API keys.

Prerequisite: This skill uses token IDs from the polymarket-scanner skill. Run scan_markets.py first to discover markets and obtain token IDs.

Quick Start

All scripts require the Python venv at /home/verticalclaw/.venv.

Monitor Multiple Markets for Price Alerts

source /home/verticalclaw/.venv/bin/activate && python polymarket-monitor/scripts/monitor_prices.py \
  --token-id "<TOKEN_ID_1>" \
  --token-id "<TOKEN_ID_2>" \
  --interval 30 \
  --threshold 5.0

This polls every 30 seconds and prints a JSON alert whenever a token's midpoint moves more than 5% from its baseline.

Watch a Single Market Live

source /home/verticalclaw/.venv/bin/activate && python polymarket-monitor/scripts/watch_market.py \
  --token-id "<TOKEN_ID>" \
  --interval 15

Prints a JSON snapshot every 15 seconds with price, spread, and order book depth.

Scripts

monitor_prices.py

Polls multiple tokens at a set interval and emits JSON alerts when price changes exceed a threshold.

Arguments:

  • --token-id ID — CLOB token ID to monitor (repeatable, at least one required)
  • --interval N — Polling interval in seconds (default: 30, minimum: 5)
  • --threshold N — Percentage change to trigger an alert (default: 5.0)
  • --max-polls N — Stop after N polls (default: unlimited, use for non-interactive runs)
  • --baseline-window N — Number of recent prices to average for baseline (default: 1, meaning compare to last poll)

Output: One JSON object per line for each alert:

{
  "type": "price_alert",
  "token_id": "...",
  "timestamp": "2026-02-26T12:00:00Z",
  "current_price": 0.65,
  "baseline_price": 0.60,
  "change_pct": 8.33,
  "direction": "up",
  "spread": 0.02,
  "poll_number": 5
}

Non-alert polls print a status line to stderr so the agent knows monitoring is active.

watch_market.py

Continuously monitors a single market, printing a JSON snapshot each interval with price, spread, volume, and order book summary.

Arguments:

  • --token-id ID — CLOB token ID to watch (required)
  • --interval N — Snapshot interval in seconds (default: 15, minimum: 5)
  • --max-polls N — Stop after N snapshots (default: unlimited)

Output: One JSON object per line per snapshot:

{
  "type": "market_snapshot",
  "token_id": "...",
  "timestamp": "2026-02-26T12:00:00Z",
  "midpoint": 0.55,
  "best_bid": 0.54,
  "best_ask": 0.56,
  "spread": 0.02,
  "bid_depth": 15000.0,
  "ask_depth": 12000.0,
  "last_trade_price": 0.55,
  "last_trade_side": "BUY",
  "poll_number": 1
}

Data Flow

  1. Run polymarket-scanner/scripts/scan_markets.py to find markets and get token IDs
  2. Pass token IDs to monitor_prices.py for multi-market alerting
  3. Or pass a single token ID to watch_market.py for detailed single-market tracking

Monitoring Guide

For recommended thresholds by market type and advanced monitoring strategies, see references/monitoring-guide.md.

版本历史

  • ffed17f 当前 2026-07-19 09:15

同 Skill 集合

polymarket-analyzer/SKILL.md
polymarket-live-executor/SKILL.md
polymarket-paper-trader/SKILL.md
polymarket-scanner/SKILL.md
polymarket-strategy-advisor/SKILL.md

元信息

文件数
0
版本
ffed17f
Hash
2e6d4c5e
收录时间
2026-07-19 09:15

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-07-22 10:09
浙ICP备14020137号-1 $访客地图$