Open Source Alternatives LogoOpen Source Alternatives
AlternativesBlogAdvertise
Open Source Alternatives LogoOpen Source Alternatives

Stay Updated

Subscribe to our newsletter for the latest news and updates about Alternatives

Open Source Alternatives LogoOpen Source Alternatives

Handpicked Open Source Alternatives to Paid Softwares

Product
  • Categories
  • Tag
  • Sign In
Resources
  • Blog
  • Collection
  • Submit
  • Advertise your tool
Company
  • Privacy Policy
  • Terms of Service
  • Refund Policy
  • Sitemap
Alternatives
  • Superhuman
  • Notion
  • Slack
  • Linear
  • Airtable
  • Wispr Flow
  • All alternatives
Copyright © 2026 All Rights Reserved.
Home/Categories/Finance & Fintech/CloddsBot
icon of CloddsBot

CloddsBot

Open source alternative to 3Commas and Cryptohopper

Automate crypto trading across 1000+ markets with an AI agent covering prediction markets, perpetual futures, Solana and EVM DeFi. Self-hosted and MIT licensed.

1.6K starsTypeScriptMITActive this week
Visit websiteGitHub repo
Clodds AI trading terminal homepage hero
Contents
  1. 01Who CloddsBot is for
  2. 02The problem it solves
  3. 03How it solves it
  4. 04Strengths and trade-offs
  5. 05CloddsBot vs alternatives
  6. 06Install and self-host
  7. 07Tech stack
  8. 08FAQ
  9. 09Similar open-source tools
TL;DR

CloddsBot is a self-hosted, MIT-licensed AI trading agent that covers 10 prediction markets (Polymarket, Kalshi, Betfair), perpetual futures on seven exchanges including Binance and Hyperliquid, Solana DeFi, and EVM DeFi across five chains. Installed with a single npm command, it runs locally and connects to 21 messaging channels including Telegram and Discord. It uses Claude as the primary AI with 118+ bundled trading strategies, a unified risk engine with circuit-breaker and kill switch, and a tamper-auditable trade ledger. A self-hosted alternative to 3Commas and Cryptohopper for traders who want multi-market coverage without a cloud subscription.MIT · TypeScript · 1.6K stars · Active this week

who it's for

Who CloddsBot is for#

Traders active across prediction markets and futures exchanges

Access Polymarket, Kalshi, and Betfair prediction markets alongside Binance, Bybit, and Hyperliquid perpetual futures from one agent via Telegram or Discord. Route orders, check open positions, set stop-losses, and get fill alerts through natural language without switching between separate apps.

Skip if:

You trade only on one centralized exchange and prefer a polished visual dashboard with pre-built strategy templates. Tools designed specifically for CEX trading will feel more familiar and require less initial configuration.

Privacy-conscious traders avoiding SaaS key custody

Run CloddsBot locally so exchange API keys stay on your own hardware and never pass through a third-party service. AES-256-GCM encryption is applied to stored credentials. All outbound connections go directly to exchange APIs with no intermediary cloud layer.

Skip if:

You prefer managed reliability with guaranteed uptime, automatic software updates, and professional support. A cloud-based trading service handles server maintenance and failures for you, which is a real operational advantage if you cannot maintain your own server.

Developers building and testing multi-market strategies

Use the 119 MCP skills via Claude Desktop to develop strategies, or use the built-in backtesting framework to validate them against historical data before going live. The trade ledger's confidence calibration output shows how well the AI's stated confidence tracks actual trade outcomes over time.

Skip if:

You need a low-code visual builder for strategies with drag-and-drop logic blocks. CloddsBot is configured through chat commands and code, not a graphical interface.

Arbitrage hunters across prediction market platforms

The built-in arbitrage engine scans Polymarket and Kalshi simultaneously for cross-platform price discrepancies, applies combinatorial analysis from arXiv:2508.03474, and uses Kelly sizing for position recommendations. Defaults to dry-run mode so you can audit signals before enabling live execution.

Skip if:

You need fully automated live arbitrage execution at low latency with no manual review step. The README notes that cross-platform settlement complexity requires manual review in many cases, and the default configuration is dry-run only.

the problem

The problem it solves#

Managing crypto trading across multiple market types means maintaining a separate setup for each: a bot for centralized exchange futures, a different tool for Polymarket prediction markets, and a manual workflow for on-chain DEX swaps. This fragmentation compounds when you try to apply consistent risk management, since each tool has its own position limits, stop-loss settings, and reporting format.

The other friction point is key custody. Most trading automation services require you to input your exchange API keys into their cloud systems. You are trusting a third party with API access to your funds, with no visibility into how those keys are stored or who else can access them. Self-hosting removes that dependency: your keys stay on your machine, and the trading agent runs without routing through any external infrastructure.

how CloddsBot solves it

How it solves it#

1,000+ market coverage in one agent

Trades across 10 prediction markets (Polymarket, Kalshi, Betfair, Smarkets, Drift, Opinion.xyz, Predict.fun), 7 perpetual futures exchanges (Binance, Bybit, Hyperliquid, MEXC, Drift, Lighter, Percolator), Solana DEXs (Jupiter, Raydium, Orca, Pump.fun, Meteora), and five EVM chains via Uniswap V3 and 1inch. All accessible through one agent without switching interfaces.

118+ trading strategies with backtesting

Includes momentum, mean reversion, arbitrage detection (using combinatorial analysis sourced from arXiv:2508.03474), DCA bots, copy trading, whale tracking, and market making. Strategies are backtestable with configurable sizing, stop-loss, and take-profit parameters before going live. A/B testing across live strategies is supported on futures exchanges.

21 messaging channels and built-in WebChat

Control the agent through Telegram, Discord, Slack, WhatsApp, Teams, Signal, Matrix, iMessage, LINE, Nostr, and a built-in browser interface at localhost:18789. WebChat stores unlimited message history in SQLite, supports nine interface languages, and uses context compacting so the AI retains older conversation context across long sessions.

Risk engine with circuit breaker and kill switch

A unified risk layer applies VaR and CVaR calculations, volatility regime detection, Kelly sizing, and configurable daily loss limits across all open positions. A circuit breaker halts trading if the daily loss limit is hit. A kill switch closes all positions immediately. These controls apply globally across every connected market.

Trade ledger with on-chain anchoring

Every trade decision is logged with the AI's reasoning, confidence score, and outcome. Records are optionally hashed with SHA-256 for integrity verification and can be anchored to Solana, Polygon, or Base for immutable proof. The ledger CLI surfaces win rates, P&L, and confidence calibration statistics via `clodds ledger stats`.

MCP server for Claude Desktop and Claude Code

All 119 bundled skills are exposed as MCP tools, letting you invoke CloddsBot's trading, analysis, and automation capabilities from Claude Desktop or Claude Code directly. Auto-configure with `clodds mcp install`. Useful for building multi-step trading workflows in Claude without writing a custom API client.

strengths · trade-offs

Strengths and trade-offs#

Strengths

  • API key custody stays on your machineThe agent runs locally; your exchange API keys never leave your own hardware. Cloud trading services require connecting your keys to their servers, creating a third-party custody risk. CloddsBot applies AES-256-GCM encryption to stored credentials locally, and all outbound connections go only to the exchange APIs you configure.
  • Widest market coverage among open source trading agentsCloddsBot covers prediction markets, centralized futures, Solana DEXs, and EVM DEXs in one agent. Most open source bots focus on a single category: CEX trading only or one DEX. The README's feature table documents support for 10 prediction markets, 7 futures exchanges, and DeFi protocols across six blockchain networks.
  • MIT license with no usage restrictionsMIT allows commercial use, modification, and distribution without licensing fees beyond the copyright notice. You can fork it, adapt strategies to your own use case, and run it commercially without a subscription. The source code is public and auditable, which matters when the agent has access to your trading API keys.
  • Natural language control through any messaging appRather than requiring a dedicated web dashboard, CloddsBot accepts trading commands, status requests, and strategy changes through natural conversation in Telegram, Discord, Slack, or WhatsApp. You ask "what are my open positions" or "run a BTC DCA starting tomorrow" and the agent handles execution.

Trade-offs

  • -Anthropic API key required for core AI functionsClaude is the default LLM and required for the main agent. You pay Anthropic API costs per message and trade decision. High-frequency scenarios with many short decisions accumulate meaningful API costs over time. Alternative LLM providers (GPT-4, Gemini, Groq, Ollama) are supported as substitutes, but the default configuration and documentation target Claude.
  • -Wide market coverage means wide credential setupEach market integration requires its own API key, and some exchanges (Binance, Bybit) require KYC. The onboard wizard handles the initial setup, but configuring all 16+ trading platforms is a multi-step process. Users who only need one or two exchanges will still encounter a broad configuration surface during setup.
  • -Young project with 30 open issuesCloddsBot launched in January 2026 and has 30 open issues as of September 2026. The codebase has grown fast across many integrations, and the release cadence is rapid. Users who run the main branch should expect occasional breaking changes in configuration keys, channel integrations, or strategy parameters between updates.
versus alternatives

CloddsBot vs alternatives#

CloddsBot vs 3Commas

Both tools automate crypto trading, but they differ in deployment model and market coverage. 3Commas is a cloud-hosted SaaS; CloddsBot runs on your own machine and keeps API keys local.

FeatureCloddsBot3Commas
LicenseMITProprietary
Self-hostingYesNo
Prediction markets10 platformsNone
On-chain DeFiYes (Solana and 5 EVM chains)No
Perpetual futures7 exchangesSelect CEXs
API key custodyYour hardwareCloud servers
Pricing modelAPI usage (Anthropic key)Subscription

CloddsBot is the stronger choice for traders who need prediction market or DeFi coverage alongside centralized exchange trading, or who want full custody of their API keys. 3Commas is the better fit when you want a managed, visual interface with no infrastructure setup and a longer-established track record on centralized exchanges.

CloddsBot vs Cryptohopper

Cryptohopper is a cloud-based trading bot focused on centralized exchanges, with a marketplace for community-built strategies. CloddsBot's scope extends to on-chain trading and prediction markets that Cryptohopper does not cover.

FeatureCloddsBotCryptohopper
LicenseMITProprietary
Self-hostingYesNo
Prediction markets10 platformsNone
DeFi tradingYesNo
Natural language controlYes (21 channels)No
AI reasoning layerClaude (LLM)Rule-based signals
Pricing modelAPI usage (Anthropic key)Subscription

Cryptohopper suits traders who prefer visual strategy builders, community strategy templates, and cloud-managed reliability without infrastructure overhead. CloddsBot reaches markets Cryptohopper cannot (Polymarket, Kalshi, Hyperliquid DEX, Solana DeFi) and accepts natural language commands through Telegram or Discord rather than requiring a dedicated web dashboard.

install · self-host

Install and self-host#

bash
Install CloddsBot via npm and run the onboard wizard to configure API keys and start the local gateway.
```bash
npm install -g clodds --loglevel=error
clodds onboard
```
tech stack · detected from GitHub

What it's built on#

Languages
JavaScriptTypeScript
Frameworks
Express
Databases
PostgreSQL
Cache
Redis
frequently asked

FAQ#

Is CloddsBot free to use?

CloddsBot is MIT licensed and free to run on your own hardware. You will need API keys for the exchanges and markets you trade on. The default AI is Claude, which requires an Anthropic API key with usage-based billing. Alternative LLM providers including Ollama (free, local) are supported as a substitute for the AI layer.

What exchanges and markets does CloddsBot support?

CloddsBot connects to 10 prediction markets (Polymarket, Kalshi, Betfair, Smarkets, Drift, Manifold, Metaculus, PredictIt, Opinion.xyz, Predict.fun), 7 perpetual futures exchanges (Binance, Bybit, Hyperliquid, MEXC, Drift, Percolator, Lighter), Solana DEXs (Jupiter, Raydium, Orca, Pump.fun, Meteora), and five EVM chains via Uniswap V3 and 1inch.

Does CloddsBot work with Telegram?

Yes. Telegram is one of 21 supported messaging channels. After running clodds onboard, you connect a Telegram bot token and control the agent through natural language chat. Other supported channels include Discord, Slack, WhatsApp, Teams, Signal, Matrix, and a built-in web interface at localhost:18789.

Does CloddsBot require a cloud server?

No. CloddsBot runs on your local machine via Node.js. The gateway listens locally for the web interface and connects outbound to exchange APIs only. You can also deploy it on a home server or VPS. It does not depend on any external service beyond the exchange and AI provider APIs you configure.

How does CloddsBot handle trading risk?

A unified risk engine applies VaR and CVaR calculations, Kelly sizing, volatility regime detection, and configurable daily loss limits across all positions. A circuit breaker halts trading when the daily loss limit is reached. A kill switch closes all open positions immediately. These controls apply globally across every connected market and exchange.

also worth a look

Similar open-source tools#

FckSignups

FckSignups

Open-source tools that work instantly, no signup required

4.1KTypeScriptGPL-3.0
fmt

fmt

Fast, type-safe C++ formatting that replaces printf and iostreams

25.7KC++MIT
camofox-browser

camofox-browser

Stealth headless browser for AI agents; bypasses bot detection

10.9KJavaScriptMIT
JellyBoxPlayer

JellyBoxPlayer

Native Jellyfin and Emby music player for every platform

574DartAGPL-3.0
stremio-web

stremio-web

Open source web UI for media streaming, powered by community addons.

13.7KJavaScriptGPL-2.0
agentic-inbox

agentic-inbox

Self-hosted email client with AI agent on Cloudflare Workers

7KTypeScriptApache-2.0

Repository

Stars
1.6K
Forks
256
License
MIT
Latest
v1.9.0
Last commit
today
Last verified
Sep 11, 2026
Repo
alsk1992/CloddsBot ↗

Additional details

Language
TypeScript
Open issues
30
Contributors
5
First release
2026

Categories

Finance & FintechAI & Machine LearningWeb DevelopmentCloud & Hosting

Tags

AI Coding AssistantDeveloper ToolsWeb3Self HostedMonitoring