
Trading Automation
polymarket-manual-trade
This Skill enables manual trade placement on Polymarket via natural-language agent commands or a CLI. It supports immediate FAK fills (best ask + 0.01), GTC limit orders that lock funds on placement, and FOK executions.
Overview
This Skill enables manual trade placement on Polymarket via natural-language agent commands or a CLI.
This Skill enables manual trade placement on Polymarket via natural-language agent commands or a CLI. It supports immediate FAK fills (best ask + 0.01), GTC limit orders that lock funds on placement, and FOK executions. You can pass either a Simmer market ID or a full Polymarket event URL—the Skill auto-imports via Simmer's import API, resolves markets, and performs live price discovery against the CLOB order book. Built-in features include dry-run previews, automatic best-ask pricing when no limit is supplied, and venue selection (polymarket or sim). Typical use cases: quick market entry at market price, posting limit orders to capture a target price, scripted or agent-driven trading, and safe testing of strategies. Core advantages are fast execution, seamless URL-to-market resolution, and explicit order-type controls for practical prediction-market workflows.
Skill.md
How this skill works
This Skill enables manual trade placement on Polymarket via natural-language agent commands or a CLI. It supports immediate FAK fills (best ask + 0.01), GTC limit orders that lock funds on placement, and FOK executions.
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
| Type | Behavior | When to use |
|---|---|---|
| FAK (default) | Fills immediately at best ask+0.01. Remainder cancelled. | You want in now at market price |
| GTC | Limit order sits on CLOB book. Funds locked on placement, fill when market reaches your price | You want a specific price |
Arguments
| Flag | Description |
|---|---|
--market / -m | Simmer market ID or full Polymarket URL |
--side / -s | YES or NO |
--amount / -a | Dollar amount (default $10) |
--order / -o | FAK, GTC, or FOK (default FAK) |
--price / -p | Limit price (optional — auto-fetches best ask+0.01 if omitted) |
--venue / -v | polymarket or sim (default polymarket) |
--dry-run | Preview 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
asks[-1](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 keyWALLET_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.
Best used for
When to use it
This Skill enables manual trade placement on Polymarket via natural-language agent commands or a CLI. It supports immediate FAK fills (best ask + 0.01), GTC limit orders that lock funds on placement, and FOK executions.

01 · PRE-MEETING
Prepare a decision brief
Turn scattered evidence into a structured case before an investment committee meeting.

02 · TEAM WORKFLOW
Standardize handoffs
Create consistent research outputs across analysts, portfolio managers, and agents.

03 · LIVE UPDATE
Refresh the thesis
Update scenarios after a new catalyst, KPI release, or earnings result.
Community notes
Built to improve with use.
Feedback will appear here as this skill is used and reviewed.
Discover more
Related skills
View allquant-analysis
Quantitative Analysis Skill provides an end-to-end toolkit for quantitative finance research and production analysis. It automates data ingestion, interactive analysis in Jupyter (jupyter_execute,…
bankr
Bankr enables executing crypto trading and DeFi operations via natural-language commands. It offers two integration options: a batteries-included Bankr CLI and a REST API at https://api.bankr.bot,…
pine-backtester
pine-backtester provides comprehensive backtesting for Pine Script indicators and strategies. Use it to append performance metrics, analyze trades, generate equity curves, compute win rates, track…