โ† All skills
Tencent SkillHub ยท Developer Tools

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 Simme...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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 Simme...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, clawhub.json, manual_trade.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 6 sections Open source page

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 useFAK (default)Fills immediately at best ask+0.01. Remainder cancelled.You want in now at market priceGTCLimit 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

Market resolution โ€” if you pass a Polymarket URL, it auto-imports via Simmer's import API and resolves to the correct market Price discovery โ€” fetches live CLOB order book, uses best ask + 0.01 for FAK to guarantee fill Order placement โ€” signs and submits via simmer-sdk with your wallet key 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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • README.md Docs
  • manual_trade.py Scripts
  • clawhub.json Config