ORBITRON
Advanced algorithmic trading & management bot for the Polymarket CTF Exchange.
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 including Arbitrage, Cross-Market, Fade Chaos, Market Making, and Positive EV. Highly scalable Goroutine execution layer.
Shadow Copy
Advanced copytrading. 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 kept in memory and expire automatically in 30 seconds.
System Capabilities
Multi-Interface Experience
Orbitron is designed to be accessible from any environment. Our architecture ensures complete parity across all interfaces.
- TUI (Terminal UI): Native terminal application with separate tabs for Markets, Trading, Copytrading, Wallets, and Logs.
- Web UI: Embedded Vue 3 SPA with real-time WebSocket updates, JWT auth, and responsive design.
- Telegram Bot: Interactive multi-step conversations and inline keyboards mirroring the TUI capabilities.
Algorithmic Trading & Monitoring
Built for scale and precision on the Polymarket CTF Exchange. Monitor the market and execute flawlessly.
- Real-Time Monitor: Polling Gamma & Data API for market state diffs and alert evaluations.
- Pluggable Strategies: Easily register new custom Go-based strategies.
- Multi-Wallet: Manage multiple active wallets, view aggregated stats directly.
- i18n Support: Native, hot-reloading support for English, Russian, Chinese, Japanese, and Korean.
Execution Latency
Frequently Asked Questions
Is my private key safe?
Do I need a powerful server to run this?
How does the Copytrading engine work?
Can I run the bot completely headless?
--no-tui flag, the bot runs without the terminal interface. You can then manage the bot entirely remotely using the embedded Vue 3 Web UI or the comprehensive Telegram Bot integration.Deployment Protocol
⚡ Quick Auto-Install (Linux/macOS)
The fastest way to get started. Downloads the source, installs dependencies, and builds the bot.
# 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