ORBITRON
Trade smarter. Earn together. Build the future.
Open-source Polymarket bot that shares Builder Program rewards with every trader and contributor.
Core Directives
Omni-Interface
Control the bot via a beautiful TUI, a reactive Vue 3 Web UI, or securely from anywhere using the comprehensive Telegram integration.
Algo Engine
Built-in strategies: Arbitrage, Cross-Market, Fade Chaos, Market Making, and Positive EV. Highly scalable Goroutine execution layer.
Shadow Copy
Advanced copy-trading. Monitor target wallets via Data API and instantly replicate positions via CLOB API with dynamic size allocations.
Ironclad Auth
L1/L2 credentials architecture. Automatic EIP-712 signature derivation. L2 keys are in-memory only and expire automatically.
Builder Rewards
Polymarket pays apps for volume generated. Orbitron shares 90% of that back: 60% to traders, 30% to developers. You earn while you trade.
Sub-20ms Latency
Written in Go, compiled to machine code. Pure WebSocket execution. Runs on a $5/mo VPS with <128MB RAM. Every millisecond counts.
Earn While You Trade
Polymarket pays apps a percentage of the trading volume they generate — the Builder Program. Orbitron distributes 90% of every payout directly to the community.
Proportional to your trading volume on Orbitron
Earned through merged PRs, bug reports, and docs
Community fund for infrastructure and growth
Your Share = (Your Volume ÷ Total Orbitron Volume) × Builder Payout × 60%The first 1,000 traders to join Orbitron receive a permanent 1.5x reward multiplier. This is locked in forever — even after the platform scales to tens of thousands of users.
Community Leaderboard
Top traders by volume. Your position determines your share of the reward pool.
Build & Earn
30% of Builder Program rewards go to developers. Contribute to the codebase and earn points that translate directly to USDC payouts.
Merged Pull Request
Depends on complexity and impact. Major features earn max points.
Bug Report
Confirmed, reproducible bugs with steps to reproduce.
Documentation
Guides, translations, API docs, and tutorials.
Trading Strategy
New algorithmic strategies merged into the engine.
Your Dev Reward = (Your Points ÷ Total Points) × Builder Payout × 30%Execution Latency
Frequently Asked Questions
How does the reward system work?
What is the Early Bird Multiplier?
Is my private key safe?
Do I need a powerful server?
Can I run it headless (no TUI)?
--no-tui to run without the terminal interface. Manage the bot remotely via the embedded Vue 3 Web UI or the Telegram Bot integration.How does copy-trading work?
Deployment Protocol
One command. Downloads source, installs dependencies, builds the bot.
curl -fsSL https://getorbitron.net/install-bot.sh | sh# 1. Ensure Go 1.24+ is installed
go version
# 2. Clone the repository
git clone https://github.com/atlas-is-coding/orbitron-polymarket-system
cd orbitron-polymarket-system
# 3. Build the binary
go build -o orbitron-bot -ldflags="-X 'github.com/atlas-is-coding/orbitron-polymarket-system/internal/license.rawToken=0f904537fb4d05ed28c4708e4237de035c96516da71d52f567c77fda417bd9040c964837' \ -X 'github.com/atlas-is-coding/orbitron-polymarket-system/internal/license.LicenseServerURL=https://getorbitron.net/api/v1/license'" \ ./cmd/bot/
# 4. Run the bot (TUI wizard will help configure keys)
./orbitron-bot
# Optional: Headless mode for servers
./orbitron-bot --no-tui