Overview
ClyptQ Trading System is an execution pipeline that converts strategy signals into actual trades. The same code runs from Backtest to Live, ensuring reproducibility.TradingDriver
The central orchestrator for all trading systems:- Execute ComputeGraph (calculate strategy signals)
- Manage TradingState (portfolio state)
- Execute Orders (Execution Pipeline)
- Track Performance (Metrics)
Execution Pipeline
Order execution is processed through a 3-stage pipeline:Trading Intentions
Declarative order specifications:Execution Modes
Backtest: Simulate with historical dataTradingState
Portfolio state tracking:Order Types
Market Order: Immediate executionRisk Management
Position Limits:Cost Models
Trading costs are automatically applied per venue:Environment Safety
Environment-specific restrictions to prevent mistakes:Performance Tracking
Real-time Metrics:Best Practices
1. Test by ModeEcosystem Value
For Builders:- Backtest = Live (same code)
- Production infrastructure provided
- Automated risk management
- Transparent execution logic
- Verifiable performance
- Built-in safety mechanisms
