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.

Reality check first

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.

Key distinction

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

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.

B

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.

C

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.

D

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:

Terminal — one-line install curl -fsSL https://openclaw.ai/install.sh | bash

Once installed, run the onboarding sequence:

Terminal — start the daemon and gateway openclaw onboard --install-daemon
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.

Security warning

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:

Terminal — clone and install PolyClaw git clone https://github.com/chainstacklabs/polyclaw.git ~/.openclaw/skills/polyclaw
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):

Terminal — approve Polymarket contracts (one-time) cd ~/.openclaw/skills/polyclaw
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:

Telegram message — starter Clawbot strategy You are now my 24/7 high-volume Polymarket Clawbot for BTC
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.

1

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.

2

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.

3

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:

Profitable day
~42%
Flat (±$2)
~28%
Small loss
~22%
Significant loss
~8%

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.

Volume over P&L

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?
Polymarket's terms do not explicitly prohibit automated trading — the platform operates on public smart contracts, and on-chain interactions are permissionless. That said, terms can change. Always check the current ToS before running a bot with significant capital. Do not use bots to manipulate markets or spam transactions to clog the network.
Do I need to know how to code?
No. The OpenClaw install is a single terminal command, and the PolyClaw setup is mostly copy-paste. The strategy is written in plain English as a Telegram message. That said, a basic comfort with a terminal (copy-paste, running commands) is helpful. Complete beginners may want a friend to do the initial setup.
How much starting capital do I need?
We recommend starting with $50 for a week-long test before committing real capital. At $1.50 per trade, $50 gives you roughly 33 concurrent positions worth of buffer. Most serious accounts run with $200–500 to handle drawdowns while keeping per-trade size at the safer low end.
Is my private key safe with PolyClaw?
PolyClaw stores your key in the local config file on your machine — it never transmits it externally. You can verify this by reading the source code on GitHub before running it. The key risk is accidentally using a different, unvetted skill that does transmit keys. Only use PolyClaw from the official Chainstack repository.
What happens if the bot loses money?
Include a daily loss limit in your strategy prompt (e.g., "Stop all trading if total daily loss exceeds $20 and alert me on Telegram"). Without a hard stop, a misconfigured bot can drain an account fast on a bad day. Always monitor the Telegram log for the first few days even if the bot is supposed to be autonomous.
Can I use PolyMonit to monitor my Clawbot wallet?
Yes. Paste your bot's Polygon wallet address into PolyMonit and you will see a live feed of every trade, real-time P&L signals, and Telegram alerts for large moves. It is a useful safety layer — if the bot starts behaving unexpectedly, you will see it in your PolyMonit feed before significant damage is done.

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