The viral videos are real. Traders are running hundreds of tiny automated trades per day on Polymarket's ultra-short BTC Up/Down markets, collecting small wins at scale. The bot behind most of them goes by a few names — Clawbot, Clawdbot, Moltbot — but the open-source tool powering it all is now officially called OpenClaw.
OpenClaw is a free AI agent that lives on your computer or a cheap VPS. You control it through simple chat messages on Telegram, and it can browse the web, run scripts, and — with the right plugin — trade on Polymarket automatically. No cloud company ever sees your private keys. Everything runs locally, under your full control.
This guide covers every step from zero to a live trading bot. We will also be honest about what the numbers actually look like, because not every account prints money.
Not every account is profitable. Fees, slippage, and market conditions mean many days are flat or marginally negative. The biggest winner for most people is high-volume stacking (useful for future points / airdrops) rather than outright P&L. Test with $50 before committing real capital. This is not financial advice.
Why People Are Using Clawbot on Polymarket
Polymarket's BTC 5-minute and 15-minute Up/Down markets are essentially binary options that resolve every few minutes. Each contract is cheap — you can enter for $1–$2 — and the outcome is yes/no: was BTC price higher or lower at resolution?
A high-frequency scalper can enter and exit these markets dozens or hundreds of times per hour, targeting a small edge on each trade. The appeal is clear:
- Runs 24/7 without you watching a screen
- Tiny position sizes ($1.50 per trade) keep individual risk low
- Auto-closes at +$0.10 to +$0.20 profit — no greed, no holding
- Massive volume stacks up fast, useful for any future Polymarket incentive programs
- Controlled via Telegram — adjust strategy mid-day from your phone
Real results people shared in February 2026
Here is a summary of self-reported results from public threads and videos. These are anecdotal — your results will vary significantly.
| Test period | Starting capital | Trades | Net P&L | Outcome |
|---|---|---|---|---|
| 14 days | $260 | 550+ | +$36 | Consistent small edges |
| 7 days (good week) | $40 | 800+ | +$210 | High BTC volatility helped |
| 7 days (flat week) | $200 | 1,200+ | +$4 | Fees ate most of the edge |
| 1 day (volume run) | $300 | 1,900 | +$22 | Pure volume stacking |
What Is OpenClaw, Exactly?
OpenClaw is an open-source AI agent framework. Think of it as a personal assistant that can actually do things on your computer — open browsers, run Python scripts, call APIs — rather than just chatting back at you.
You give it instructions over Telegram (or Discord). It understands natural language. The trading capability comes from a skill plugin called PolyClaw, built by Chainstack, which plugs into OpenClaw and handles the actual Polymarket API calls, wallet signing, and order management.
OpenClaw is the agent framework. PolyClaw is the Polymarket-specific skill. You need both. Your private key never leaves your machine — the skill signs transactions locally.
Manual trading vs. Clawbot — at a glance
| Factor | Manual trading | Clawbot (OpenClaw) |
|---|---|---|
| Hours required | Active monitoring | Zero after setup |
| Trades per day | 10–50 | 500–2,000+ |
| Emotional discipline | Variable | Perfectly consistent |
| Speed of execution | Seconds | Milliseconds |
| Key custody | Your device | Your device |
| Setup complexity | None | ~30–60 minutes |
| Ongoing cost | $0 | $5–10/mo (VPS optional) |
Step 1: Prerequisites
Before you run a single command, make sure you have:
A computer or cheap VPS
Any modern Mac, Linux, or Windows machine works. For 24/7 uptime without leaving your laptop on, a $5–10/month VPS (Contabo, Hetzner, or DigitalOcean) is the cleanest option. Ubuntu 22.04 LTS is recommended.
A fresh, dedicated Polygon wallet
Never use your main wallet. Create a brand new one specifically for this bot. Load it with $200–500 USDC.e for trading capital plus a small amount of POL token (~$2–5 worth) for gas fees. Keep the rest of your crypto in cold storage.
A Telegram account
This is the easiest control interface. You will communicate with your Clawbot entirely through Telegram messages — start, stop, change strategy, check P&L, all from your phone.
API keys (free)
You will need a free Chainstack RPC endpoint for Polygon and a free OpenRouter API key (used by PolyClaw for smart hedging logic). Both have generous free tiers. Grab them before starting.
Step 2: Install OpenClaw
Open your terminal and paste this single command. The installer handles Node.js and all dependencies automatically:
Once installed, run the onboarding sequence:
openclaw gateway
You will see a QR code or a short link in your terminal. Scan it with your Telegram app. Your Clawbot is now alive — it will respond to messages immediately. Send it a "hello" to confirm.
Step 3: Install the PolyClaw Skill
The PolyClaw skill (by Chainstack) is the most widely used and audited Polymarket skill available. It is open-source — you can read every line of code before running it.
Only install skills from GitHub repositories you have personally verified. Several malicious "polymarket-trading-bot" packages appeared on ClawHub in early 2026 containing reverse shells that exfiltrate private keys. Always clone from the official Chainstack repo link below and inspect the code first.
The safest install method is cloning directly from GitHub:
cd ~/.openclaw/skills/polyclaw && uv sync
Next, add your credentials. Open ~/.openclaw/openclaw.json in any text editor and add your Polygon wallet private key, Chainstack RPC URL, and OpenRouter API key. Never paste your private key directly into a chat message — always use the config file.
Finally, do the one-time contract approval (costs roughly $0.05 in gas):
uv run python scripts/polyclaw.py wallet approve
Step 4: Send the Trading Strategy Prompt
This is the part everyone shares in the videos. Open Telegram, find your Clawbot, and send it this message — or adapt it to your own parameters:
5-minute and 15-minute Up/Down markets.
Rules:
- ONLY trade active "Bitcoin Up or Down - 5 min" or "15 min" markets
- Trade size: exactly $1.50 per trade (about 3 shares)
- Entry: Buy the side that looks slightly cheaper or has momentum
(use current BTC price from skill)
- Auto-sell immediately when profit hits +$0.10 to +$0.20
- If no profit after 3 minutes, close the position anyway
- Goal: MAXIMUM number of trades while staying net positive
- Log every single trade + P&L to me here on Telegram
- Never risk more than $2 per trade
- Run forever, restart if anything crashes
Start the bot now and confirm when live. Use PolyClaw skill for all trades.
Your Clawbot will parse the instructions, confirm the parameters, and start trading within minutes. You can adjust any rule mid-session just by sending a new message — for example: "Switch to only 5-min markets" or "Increase trade size to $2".
Step 5: Run It 24/7 on a VPS
If you want true 24/7 operation without leaving your laptop running, move the setup to a small VPS and use screen or pm2 to keep the process alive through disconnects.
Provision a $5/month Ubuntu VPS
Hetzner, Contabo, and DigitalOcean all have sub-$10 options. Ubuntu 22.04 LTS is the most stable base. A 1 vCPU / 1 GB RAM instance is sufficient.
Repeat the install steps on the VPS
SSH in, run the OpenClaw install command, repeat the PolyClaw setup. Your config file with credentials stays only on the VPS — never commit it to git or share it anywhere.
Keep it alive with pm2
Install pm2 (npm install -g pm2), then start OpenClaw under pm2 so it survives disconnects and reboots. Monitor from Telegram on your phone from anywhere.
What the P&L Distribution Actually Looks Like
Based on self-reported data from active Clawbot users in Feb 2026, here is a rough breakdown of daily outcomes across accounts:
The distribution skews roughly positive because the bot cuts losses quickly — a core rule of the strategy. The 8% significant-loss days are almost always caused by config errors, runaway positions, or manual overrides gone wrong.
Many experienced users run the bot primarily for volume accumulation, not short-term profit. If Polymarket launches a points or airdrop program, high-volume accounts historically receive significantly larger allocations. The marginal P&L is secondary.
Risks and Safety Rules
| Risk | Severity | Mitigation |
|---|---|---|
| Malicious skill stealing keys | Critical | Only install from verified GitHub repos. Audit code before running. |
| Runaway bot, no stop-loss | High | Always set a daily loss limit in the prompt. Monitor Telegram logs. |
| Fees eating thin edges | Medium | Keep trade size at $1.50+. Below $1 the fee drag eliminates edge entirely. |
| Polygon gas costs | Medium | At 2,000 trades/day, gas adds up. Keep 0.5+ POL in wallet at all times. |
| Market structure changes | Medium | BTC 5-min markets can pause or restructure. Check logs daily. |
| Tax and legal exposure | Medium | This is real trading. Track every trade. Consult a tax advisor. |
Bonus: The Official Polymarket CLI (No AI Required)
On February 24, 2026, Polymarket launched an official command-line interface (CLI) that lets you interact with markets directly from your terminal. No AI agent, no private key pasted into a chat, no third-party skill.
Many experienced traders are switching to this for pure speed and control: install the CLI in 10 seconds, wrap it in a bash or Python loop, and you have a lightweight scalping script with full transparency. The tradeoff is that you need to write the strategy logic yourself — but for programmers, it is significantly cleaner than the OpenClaw stack.
We can write a dedicated guide for the CLI approach if there is interest — the setup is genuinely simpler for anyone comfortable with a terminal.
Frequently Asked Questions
Is running a Clawbot on Polymarket against the terms of service?
Do I need to know how to code?
How much starting capital do I need?
Is my private key safe with PolyClaw?
What happens if the bot loses money?
Can I use PolyMonit to monitor my Clawbot wallet?
Summary: Your Clawbot Checklist
- ☐ Create a fresh, dedicated Polygon wallet (never your main wallet)
- ☐ Load with $200–500 USDC.e + $5 worth of POL for gas
- ☐ Install OpenClaw via the one-line terminal command
- ☐ Connect to Telegram via the QR code / gateway link
- ☐ Clone PolyClaw from the official Chainstack GitHub repo
- ☐ Add private key + API keys to the local config file (not in chat)
- ☐ Approve Polymarket contracts (one-time, ~$0.05 gas)
- ☐ Send the strategy prompt with daily loss limit included
- ☐ Monitor Telegram logs for the first 48 hours
- ☐ Add your bot wallet to PolyMonit for real-time activity monitoring
- ☐ Withdraw profits to cold wallet weekly