Polymarket copy-trading bot (Python)
A ready-to-run Polymarket copy-trading bot built on PMWallets: it follows the traders you subscribe to and mirrors their fills on the Polymarket CLOB with your own account, inside the limits you set.
pmwallets-copytrade on PyPI · 中文说明 · Node.js version: polymarket-copy-trading-bot ·
SDK: pmwallets-python
What the bot does
- You pick the traders on pmwallets.com: filter the board by the lower bound of the win-rate confidence interval, profit without the single best market, activity and style, then subscribe.
- The bot receives every fill of those traders over the PMWallets WebSocket, typically within a second of the
block (measured latency). Missed frames are detected (
session/seq) and replayed from the last fill handled, including everything that happened while the bot was down. - It mirrors them on Polymarket with your own account, inside the limits you set. Your keys never leave your machine; PMWallets never sees them and never places orders.
Quick start
# Python ≥ 3.10
pip install pmwallets-copytrade
pmwallets-copytrade init # writes config.yaml
export PMW_API_KEY=pmw_... # https://pmwallets.com/keys
pmwallets-copytrade run # dry-run: logs every decision, trades nothing
When the dry-run log looks right, switch to live:
mode: live
polymarket:
privateKey: ${POLY_PRIVATE_KEY} # signs your orders
signatureType: 2 # 0 plain wallet · 1 email/Magic login · 2 browser-wallet login
funderAddress: ${POLY_FUNDER_ADDRESS} # your Polymarket profile address (holds the USDC)
pmwallets-copytrade status prints open positions, today's spend and any order still being confirmed. If the bot
cannot establish by itself whether an order filled, it keeps the order's reservation (no further BUY can exceed
your limits because of it) and asks you: check polymarket.com and run
pmwallets-copytrade reconcile <key> --none or --filled <shares> --usdc <usdc> with the bot stopped. Every decision — including each skip and its
reason — is appended to pmw-data/decisions.<mode>.jsonl.
How it decides
The rules come from a copy-trading bot that ran live on Polymarket; each one is there because of a lost trade or a rejected order.
BUY (the trader bought)
- skip fills older than
maxFillAgeSec(a replay after downtime must not buy history), belowminTargetNotionalUsdc, or from a role you excluded; - one copy per trader transaction, one position per (trader, outcome), at most
maxBuysPerOutcomebuys into it (DCA),maxOpenPositionsPerTarget/maxOpenPositions/maxDailySpendUsdccaps; - the market must be open, accepting orders and not settle within
minSecondsToEndDate; - the best ask must sit in
[minPrice, maxPrice], be at mostmaxSlippageabove what the trader paid, and the book must holdminBookDepthUsdc; - order: fill-or-kill for an exact number of shares at the best ask (
orderSizeUsdc/ ask), rounded so the CLOB accepts it. Share-denominated on purpose — a USDC-budget market order can overfill.
SELL (the trader sold)
sellMode: allexits everything the bot bought following that trader in that outcome. Shares booked to another trader in the same outcome are never sold: the most it sells is your token balance minus what the other traders hold. If that comes to nothing, it stops and asks you to reconcile;- the exit is saved and retried (with backoff, across restarts) until the position is gone. Freshness does not apply: if the trader left while the bot was down, it still gets out;
- order: fill-and-kill at the best bid — a partial exit beats none, and the rest is retried.
Safety
- dry-run by default; live needs an explicit
mode: live; - at most once: a fill is marked decided in the state file before any order is sent, so a crash can miss a copy but never place it twice. One bot per data directory: a second instance refuses to start;
- no lost fills: every order is saved as pending before it is sent. An order the exchange reports as killed
(such replies have carried real partial fills) is looked up again by its order id with backoff until its fill —
or its absence — is certain, even across restarts. One that got no answer at all has no id to look up: if a
matching trade appears, the bot does not guess whose it is (it could be yours by hand, or another trader's copy)
and hands it to you to
reconcile; - resolved markets are swept every 10 minutes so they stop counting against the caps.
One stream per account. PMWallets allows one WebSocket per account and the newest connection wins, so the bot and the live-feed page on pmwallets.com (or a second bot) will take the stream from each other. Run one consumer per account.
Development
pip install -e '.[dev]' # or: uv pip install -e . pytest pytest-asyncio
pytest
The same config.yaml, state files and lock file work with the Node.js version. testdata/ holds the
contract cases both implementations must pass — keep it identical in both repositories.
Resources
- Polymarket smart-money leaderboard — profitable Polymarket traders scored from the Polygon chain, with win-rate confidence intervals
- Polymarket copy trading guide — which wallets are worth following and how to get their fills in time
- How to learn from Polymarket smart money — reading a trader's record: confidence intervals, maker vs taker, market specialism
- PMWallets API documentation — WebSocket and webhook fill push, fills replay, trade-history exports
- Measured fill-push latency — block-to-push p50 / p95, published live
- Ways to follow Polymarket wallets, compared — official leaderboard, free trackers, SQL dashboards
- FAQ · 中文站
Proxies
HTTPS_PROXY / HTTP_PROXY / NO_PROXY are honoured for the PMWallets API, the WebSocket and the Polymarket CLOB.
Disclaimer
This software places real orders with real money when mode: live. A copied order is not the trader's order: the
price may have moved, fees apply and liquidity is shared. Past results do not predict future ones. PMWallets
provides data about what traders did, not advice. Use at your own risk; see LICENSE (MIT).
Release files for pmwallets-copytrade 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pmwallets_copytrade-0.1.0.tar.gz | 47.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pmwallets_copytrade-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 85.3 kB
Release files / pmwallets_copytrade-0.1.0.tar.gz
| Download URL | pmwallets_copytrade-0.1.0.tar.gz |
|---|---|
| Size | 47.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5d040ede86334ff681c87e1ef945d767ec30150faf7ba26d3c1737aa1721c64a
|
|
BLAKE2b-256 checksum How to use checksums |
e8dda1c0cec9a55f4625722cc3c8e7495ae47dd71fe8edd6bdc8f411d2edda0d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency logRelease files / pmwallets_copytrade-0.1.0-py3-none-any.whl
| Download URL | pmwallets_copytrade-0.1.0-py3-none-any.whl |
|---|---|
| Size | 38.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
12f58ca2cb4e116b24c6a1f4a850781c3f5ba63d324c1edf829ea675fafefbc9
|
|
BLAKE2b-256 checksum How to use checksums |
f75dfaa67723d0c76b809ebebdd06de48014097cb956c9b3bb8b2d3eceac4e63
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 24, 2026.
Transparency log