skills$openclaw/polymarket-analysis
hiehoo6.2k

by hiehoo

polymarket-analysis – OpenClaw Skill

polymarket-analysis is an OpenClaw Skills integration for data analytics workflows. Analyze Polymarket prediction markets for trading edges. Pair Cost arbitrage, whale tracking, sentiment analysis, momentum signals, user profile tracking. No execution.

6.2k stars8.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namepolymarket-analysis
descriptionAnalyze Polymarket prediction markets for trading edges. Pair Cost arbitrage, whale tracking, sentiment analysis, momentum signals, user profile tracking. No execution. OpenClaw Skills integration.
ownerhiehoo
repositoryhiehoo/polymarket-analysis
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @hiehoo/polymarket-analysis
last updatedFeb 7, 2026

Maintainer

hiehoo

hiehoo

Maintains polymarket-analysis in the OpenClaw Skills directory.

View GitHub profile
File Explorer
14 files
.
references
market-monitoring-setup.md
3.4 KB
momentum-analysis.md
2.1 KB
pair-cost-arbitrage.md
1.9 KB
polymarket-api.md
2.1 KB
sentiment-analysis.md
2.3 KB
whale-tracking.md
2.1 KB
scripts
fetch-polymarket-user-profile.py
3.2 KB
monitor-polymarket-market.py
8.6 KB
state
1068346.json
331 B
_meta.json
468 B
SKILL.md
2.5 KB
SKILL.md

name: polymarket-analysis description: Analyze Polymarket prediction markets for trading edges. Pair Cost arbitrage, whale tracking, sentiment analysis, momentum signals, user profile tracking. No execution. version: 2.1.0

Polymarket Analysis

Identify trading advantages in Polymarket prediction markets through multi-modal analysis.

Scope: Analysis and opportunity identification only. No trade execution.

Modes

ModeDescriptionReference
AnalyzeOne-time market analysisThis file
Monitor24/7 market monitoringreferences/market-monitoring-setup.md
ProfileTrack user wallet positionsscripts/fetch-polymarket-user-profile.py

Scripts

# Monitor market for alerts
python3 scripts/monitor-polymarket-market.py <market_url_or_id>

# Fetch user profile/positions
python3 scripts/fetch-polymarket-user-profile.py <wallet_address> [--trades] [--pnl]

Quick Start

Market Analysis

  1. Get market URL from user
  2. Fetch via https://gamma-api.polymarket.com/markets?slug={slug}
  3. Run multi-strategy analysis

User Profile

# From profile URL: polymarket.com/profile/0x...
python3 scripts/fetch-polymarket-user-profile.py 0x7845bc5e15bc9c41be5ac0725e68a16ec02b51b5

Core Strategies

StrategyDescriptionReference
Pair Cost ArbitrageYES+NO < $1.00references/pair-cost-arbitrage.md
MomentumRSI, MA signalsreferences/momentum-analysis.md
Whale TrackingLarge tradesreferences/whale-tracking.md
SentimentNews/socialreferences/sentiment-analysis.md

Alert Thresholds

EventThreshold
Price change±5% in 1h
Large trade>$5,000
Pair cost<$0.98
Volume spike>2x avg

APIs

APIBase URLUse
Gammagamma-api.polymarket.comMarkets, prices
Datadata-api.polymarket.comUser positions, trades, P&L
CLOBclob.polymarket.comOrder books, trading

See references/polymarket-api.md for full endpoint reference.

References

  • references/polymarket-api.md - API endpoints (Gamma, Data, CLOB)
  • references/market-monitoring-setup.md - 24/7 cron monitoring
  • references/pair-cost-arbitrage.md - Arbitrage detection
  • references/momentum-analysis.md - Technical analysis
  • references/whale-tracking.md - Smart money tracking
  • references/sentiment-analysis.md - Sentiment aggregation
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install polymarket-analysis?

Run openclaw add @hiehoo/polymarket-analysis in your terminal. This installs polymarket-analysis into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/hiehoo/polymarket-analysis. Review commits and README documentation before installing.