Professional Trading SDK

SDKTrader
& SDKProxy

The ultimate ecosystem for quant teams. **SDKTrader** provides unified exchange APIs for Python & Rust, while **SDKProxy** delivers high-scale proxy rotation and resilient networking.

10+
Exchange Integrations
50M+
SDKProxy Requests/Day
<10ms
API Latency
24/7
Monitoring

Universal SDK Modules

Powerful specialized modules for data, AI, and infrastructure.

SDKTrader

Core Universal Library

Unified entry point for all APIs and libraries. Managed exchange abstractions and cross-language support.

Single import for all services
Unified market and order interface
Deal & position management
Native Python and Rust support

HFT Adapters

High-Frequency Ready

Optimized exchange connectivity core written natively in Rust, featuring a high-performance Python wrapper.

Sub-ms internal latency
Direct WebSocket feed handlers
Optimized binary protocols
Exchange-specific optimizations

UnrealON

Registration & Monitoring

System service for bot lifecycle management, registration, and comprehensive monitoring.

Bot registration manager
Real-time health monitoring
Detailed execution logs
Remote lifecycle control

History data

Time-Series Infrastructure

Petabyte-scale historical market data storage. Optimized for research and quantitative analysis.

Tick-by-tick historical data
Normalized OHLCV clusters
Instant aggregation APIs
Scalable data lake storage

Realtime data

Low-Latency Streams

Unified real-time streams for market depth, trades, and account event notifications.

Sub-ms stream delivery
Unified JSON/Binary feeds
Direct exchange streams
State recovery mechanisms

Backtest

Strategy Simulation

Professional-grade backtesting engine with accurate matching logic and slippage models.

Event-driven simulation
Tick-accurate order matching
Advanced slippage & fee models
Exportable performance reports

StockAPIs

Logic & Signal Layers

Higher-level business logic for signals, copy-trading, and complex strategy triggers.

Signal subscription system
Copy-trading framework
Rule-based event triggers
Multi-bot coordination

SDKProxy

Resilient Network Layer

High-scale proxy management and rotation for data scraping and exchange connectivity.

Automatic proxy rotation
Geographic IP targeting
Failed request auto-retries
High-concurrency support

SDKRouter

Unified AI & Browser

One SDK for 300+ AI models, browser automation, and structured data extraction.

300+ LLMs / Vision / OCR
Structured Pydantic outputs
Web search & research modes
Integrated browser automation

Deployment

Managed Infrastructure

Global cloud infrastructure co-located with major crypto and traditional exchanges.

Geo-distributed nodes
Zero-downtime deployments
High-availability clusters
Global health management

Profitmaker.cc

Trading Terminal

Professional terminal for accounting, portfolio tree management, automatic rebalancing, and AI bot management.

Advanced accounting
Portfolio tree management
Automatic rebalancing
AI portfolio control

Utiles

Trading Utilities

A comprehensive core set of useful trading utilities, such as splitting large orders.

Order splitting
Risk calculations
Format conversions
Batch processing
Wallet tracking
PnL analysis
Indicator library

Strategies

Visual Logic Builder

Visual strategy constructor with team collaboration, massive indicator database, and custom metric development.

Visual drag-and-drop builder
Team strategy sharing
Extensive indicator base
Custom metric integration
Strategy-based rankings

Trader Social

Social Trading Network

A transparent social ecosystem for traders with verified ratings, performance blogs, and automated cross-platform sharing.

API-driven trade logging
Verified on-chain/CEX ratings
Automated social reposting
Trader forums & chats
System Architecture

How It All Works

Follow the journey of an AI Scalper Bot using our modular ecosystem to achieve sub-millisecond precision with intelligent decision making.

Current Path

Comprehensive overview of all 14 SDK modules and their interconnections.

1. Decision & Logic

The bot uses sdkRouter to generate signals from AI models and validates them against custom rules in Strategies. This ensures intelligent entries backed by visual logic.

2. Execution Prep

Before hitting the market, Utiles splits large orders into optimized parts (TWAP/VWAP) while UnrealON tracks the bot's health and connection stability across our global infrastructure.

3. HFT Execution

Orders are dispatched via HFT Adapters (native Rust core) to exchanges with sub-millisecond internal latency, ensuring you get the best possible fill prices.

4. Management & Social

Profitmaker handles accounting and portfolio rebalancing post-trade, with optional automated results sharing via Trader Social for verified performance tracking.

Quick Start Guide

Get Started in Minutes

From installation to deployment, start building your trading bot in three simple steps

01

Install the SDK

Available for Python (pip) and Rust (cargo)

terminal
# Python
pip install sdktrader

# Rust
cargo add sdktrader
02

Configure Your Bot

Set up exchange credentials and bot parameters

terminal
from sdktrader import Bot

bot = Bot(
  exchange="binance",
  strategy="signals"
)
03

Deploy & Run

Deploy to our global infrastructure and start trading

terminal
bot.deploy(near='binance')
bot.start()