The Deployment Lifecycle
ClyptQ’s code parity means the deployment lifecycle is a parameter change, not a rewrite: This tutorial uses the SMA crossover strategy from Your First Strategy. The graph and operators don’t change — only theTradingExecutionSpec.
Phase 1: Backtest
Run the backtest
What to check
Before moving to paper trading, review key metrics like Sharpe ratio, max drawdown, fee impact, and trade frequency. Compare zero-cost vs real-cost backtests to understand fee drag.Phase 2: Submit & Paper Trade
After validating your backtest, submit your strategy to the platform. Paper and live trading are managed through the dashboard — not from notebook cells.- Submit your strategy via the marketplace submission flow
- From the dashboard, start a Paper Trade run
What happens internally
- Historical warmup: Loads past data from Parquet to fill all RollingBuffers
- Clock sync: Aligns to the next real-time bar boundary
- Live ticks: Receives data via WebSocket from the exchange
- Simulated fills: Orders are executed with the same fill model as backtest
- STATE updates: Portfolio state updates with simulated positions and PnL
What to verify
- Equity tracking: Does paper equity roughly match what backtest predicted for similar market conditions?
- Order execution: Are intentions generating reasonable deltas?
- Signal frequency: Are signals generating at expected frequency?
Phase 3: Live Trading (Small)
From the dashboard, switch to Live mode. Connect your exchange API credentials and start with small capital.What happens internally
- Balance sync: Fetches real account balance from the exchange before warmup
- Historical warmup: Same as paper mode
- Live ticks: WebSocket data from the exchange
- Real orders: Orders are sent to the exchange via CCXT
- Balance re-sync: Before each tick, checks for external changes (liquidations, manual trades, funding)
Safety features
Scaling up
Start small and scale gradually. Compare live performance to backtest expectations at each stage — significant divergence may indicate issues with execution, data, or market regime change.Code Parity
The sameStatefulGraph you build in Jupyter runs identically on the dashboard in paper and live modes. Only the execution mode and data source change — the graph, operators, and strategy logic stay the same.
Related Pages
Code Parity
Why the same code produces identical results across all modes
Backtesting Accuracy
Cost models, funding rates, and liquidation in backtest
Your First Strategy
Build the strategy used in this tutorial
Jupyter Workflow
Cell-by-cell development workflow

