polymarket-manual-trade

Place manual trades on Polymarket by telling your agent what to bet on. Supports FAK (instant fill at market) and GTC (limit order on the book). Pass a Simmer market ID or a full Polymarket URL — the skill auto-imports and handles price discovery. Both FAK and GTC order types are fully tested and working.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "polymarket-manual-trade" with this command: npx skills add DjDyll/polymarket-manual-trade

Manual Trade Placement

Place trades on Polymarket by telling your AI agent what to bet on. Supports instant FAK fills and GTC limit orders. Works with Simmer market IDs or full Polymarket event URLs.

Usage

Tell your agent:

"Buy YES $10 on [Polymarket URL or market ID]" "Place a GTC limit NO $20 at 0.35 on [market]"

Or run directly:

# FAK — instant fill at best ask price (default)
python3 manual_trade.py --market <market_id_or_url> --side YES --amount 10

# GTC — limit order, sits on book until filled
python3 manual_trade.py --market <market_id_or_url> --side NO --amount 20 --order GTC --price 0.35

# Full Polymarket URL — auto-imports and trades
python3 manual_trade.py \
  --market https://polymarket.com/event/spacex-starship-flight-test-12/will-the-chopsticks-catch-spacex-starship-flight-test-12-superheavy-booster \
  --side YES --amount 10

# Dry run (preview without placing)
python3 manual_trade.py --market <id> --side YES --amount 10 --dry-run

Order Types

TypeBehaviorWhen to use
FAK (default)Fills immediately at best ask+0.01. Remainder cancelled.You want in now at market price
GTCLimit order sits on CLOB book. Funds locked on placement, fill when market reaches your priceYou want a specific price

Arguments

FlagDescription
--market / -mSimmer market ID or full Polymarket URL
--side / -sYES or NO
--amount / -aDollar amount (default $10)
--order / -oFAK, GTC, or FOK (default FAK)
--price / -pLimit price (optional — auto-fetches best ask+0.01 if omitted)
--venue / -vpolymarket or sim (default polymarket)
--cancelCancel all open orders on the market
--cancel-sideCancel only yes or no side orders
--dry-runPreview without placing

How it Works

  1. Market resolution — if you pass a Polymarket URL, it auto-imports via Simmer's import API and resolves to the correct market
  2. Price discovery — fetches live CLOB order book, uses best ask + 0.01 for FAK to guarantee fill
  3. Order placement — signs and submits via simmer-sdk with your wallet key
  4. Confirmation — reports shares filled, cost, and trade ID

Requirements

  • SIMMER_API_KEY — your Simmer API key
  • WALLET_PRIVATE_KEY — your Polymarket wallet private key (for on-chain signing)
  • simmer-sdk >= 0.8.32

Built for Simmer — the AI trading agent platform for Polymarket and Kalshi.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Agent Guardian

Agent体验守护系统。解决AI助手常见体验问题:长时间无响应、任务卡死、中英文混用、状态不透明。包含看门狗监控、智能状态汇报、即时状态查询、语言一致性过滤、消息队列追踪。适用于所有渠道(QQ/微信/Telegram/飞书/Discord等)。当用户抱怨"等太久没回复"、"回复中英文混着"、"不知道在干什么"时使...

Registry SourceRecently Updated
Automation

Proactive Agent V2

Transform AI agents from task-followers into proactive partners that anticipate needs and continuously improve. Now with WAL Protocol, Working Buffer, Autono...

Registry SourceRecently Updated
Automation

Palaia

Local, crash-safe persistent memory for OpenClaw agents. Replaces built-in memory-core with semantic search, projects, and scope-based access control. After...

Registry SourceRecently Updated
1381
iret77