What Is Polymarket Whale Copy Trading Bot?
Polymarket Whale Copy Trading Bot is a Prediction Market Bots project built by stackpathLab that watches one target Polymarket wallet, tracks its positions and PnL, and emits alerts when a trade crosses your thresholds. It is one of the best Prediction Market Bots tools for crypto traders, quant developers, and indie hackers tracking Polymarket whales, because it runs on public data only, avoids private Polymarket auth, and turns each signal into one of three paper-trade decisions: approve, reject, or reduce.
The product is opinionated in a useful way. It is designed for a single-wallet workflow, not a noisy wall of copied feeds, which keeps the signal path short and the risk logic testable.
Quick Overview
| Attribute | Details |
|---|---|
| Type | Prediction Market Bots |
| Best For | crypto traders, quant developers, and indie hackers tracking Polymarket whales |
| Language/Stack | Node.js, public Polymarket data, Telegram Bot API, optional OpenAI API, paper-trading ledger |
| License | N/A |
| GitHub Stars | N/A as of Feb 2026 |
| Pricing | Open-Source |
| Last Release | N/A |
Who Should Use Polymarket Whale Copy Trading Bot?
- Solo traders who want to monitor one high-conviction wallet instead of scrolling Polymarket manually all day.
- Quant builders who need a clean signal source for alerting, paper trading, or downstream strategy research.
- Indie hackers who want a fast proof-of-concept for whale tracking without wiring private exchange auth.
- Risk-focused operators who care more about filtering weak entries than blindly mirroring every buy.
Not ideal for:
- Traders who expect automatic live execution into real positions, because the repo centers on alerts and paper trading.
- Teams that need multi-wallet portfolios, on-chain execution, or full OMS-style order routing.
- Users who want zero configuration, because you still need environment variables, a Telegram bot token, and sensible thresholds.
Key Features of Polymarket Whale Copy Trading Bot
- Single-wallet tracking — The bot is intentionally built around one target wallet. That makes the signal easier to reason about and keeps false positives low when you only care about a specific whale’s behavior.
- Position and PnL visibility — It shows the tracked wallet’s positions, entry, ROI, and current PnL. That is useful even before you enable copying, because you can inspect whether the whale is actually profitable over time.
- Threshold-based alerts — The tracker checks whether a new position passes your rules before sending a notification. This is better than raw event spam because you can gate on size, ROI, or other local heuristics.
- Telegram-first delivery — Alerts go to Telegram by default, which is a pragmatic choice for fast operator feedback. Discord support is mentioned as an extension path if you want another notification surface.
- Paper trading mode — When
PAPER_TRADING_ENABLED=true, the system opens virtual positions instead of live ones. That gives you a safer way to validate your filters, balance limits, and alert timing. - AI risk agent — An optional OpenAI-backed layer can review whale signals before a paper trade is opened. It returns
approve,reject, orreduce, plus a reason string, so you can audit why a trade was accepted or denied. - Public-data only architecture — The project says no private Polymarket auth is needed. That reduces operational friction and also lowers the blast radius if you are only building a research or alerting workflow.
Polymarket Whale Copy Trading Bot vs Alternatives
| Tool | Best For | Key Differentiator | Pricing |
|---|---|---|---|
| Polymarket Whale Copy Trading Bot | Watching one Polymarket whale, alerting, and paper trading | Public-data tracking with optional AI risk filtering and Telegram alerts | Open-Source |
| Polymarket native UI | Manual browsing of markets and wallets | Zero setup, but no automated thresholds or paper-trade guardrails | Free |
| Hummingbot | Crypto market making and arbitrage on exchanges | Exchange execution, connector depth, and strategy framework, not Polymarket whale watching | Open-Source |
| 3Commas | Managed crypto bots and portfolio automation | Broad exchange support and execution tooling, but not public Polymarket signal tracking | Paid |
Pick Polymarket native UI if you only need to inspect a wallet occasionally and do not want any infrastructure. Pick Hummingbot if you want execution-centric crypto automation on exchanges rather than prediction-market surveillance. Pick 3Commas if your goal is managed bot operations across centralized exchanges, not a single-wallet Polymarket feed.
If you want to extend the bot into a larger research pipeline, pair it with OpenSwarm for multi-agent orchestration, Open R1 for a stronger reasoning layer behind the AI risk agent, or OpenTrace if you need cleaner traces for alert and decision audits.
How Polymarket Whale Copy Trading Bot Works
The architecture is simple on purpose. A poller watches public Polymarket data, resolves a single tracked wallet, computes whether a new position or position change matters, and then sends the event through your alert and paper-trade filters. That design keeps the system understandable because the data flow is wallet -> rules -> alert -> optional paper trade, not a black-box executor.
The core abstraction is a signal pipeline. The first stage looks for wallet activity, the second stage applies your deterministic thresholds, and the third stage optionally asks the AI risk agent whether the trade should be sized down or skipped. The paper-trading ledger then records balance, exposure, and unrealized PnL so you can inspect the effect of your filter rules over time.
npm install
cp .env.example .env
npm run dev
# or run the CLI in focused modes
npm run cli -- discover
npm run cli -- track
npm run cli -- leaderboard
The first command starts the full stack, while the CLI modes let you isolate discovery, one tracking pass, or a terminal leaderboard view. In practice, you should expect a few startup checks, then a polling loop that refreshes wallet data at the interval you configured in POLL_INTERVAL_SECONDS.
Pros and Cons of Polymarket Whale Copy Trading Bot
Pros:
- Public-data workflow means you can evaluate the system without private exchange credentials or custody risk.
- Single-wallet focus keeps the model simpler than multi-whale copy-trading systems that drown you in correlation noise.
- Paper trading support lets you backtest your filters operationally, not just statistically.
- AI risk gating adds a second opinion layer for size, exposure, and market quality without replacing hard rules.
- Telegram alerts are low-friction for daily operator use and easy to wire into existing workflows.
- Terminal and API access make it usable both as a quick manual tool and as a backend for custom dashboards.
Cons:
- No live execution path is described in the repo text, so this is not a full auto-trading engine.
- One-wallet design is great for clarity but weak if you need portfolio-level signal aggregation.
- OpenAI dependency for the risk agent introduces cost and external API variance if you enable it.
- No private Polymarket auth also means you are limited to what public data exposes.
- Configuration still matters because bad thresholds will either spam you or hide the trades you actually wanted.
Getting Started with Polymarket Whale Copy Trading Bot
The quickest path is to install dependencies, copy the sample environment file, and start the dev stack. The repo text shows npm install, cp .env.example .env, and npm run dev as the default flow, which suggests a standard Node.js project with a local API and dashboard.
npm install
cp .env.example .env
# full stack: tracker + API + dashboard
npm run dev
# if you only want the API and dashboard
npm run api
# optional helper flows
npm run cli -- discover
npm run cli -- track
After the first run, open http://localhost:3001 to inspect the dashboard, tracked wallet, and paper portfolio. You will need to set at least TARGET_WALLET or let the CLI auto-discover a trader, plus Telegram variables if you want alerts. If you enable paper trading, set PAPER_TRADING_ENABLED=true before you trust any signal output.
Verdict
Polymarket Whale Copy Trading Bot is the strongest option for single-wallet Polymarket monitoring when you want public-data alerts, paper trading, and an optional AI filter without building the plumbing yourself. Its main strength is the tight signal path; its main caveat is that it stops short of live execution. Use it if you want disciplined whale tracking, not a full trading desk.



