1. Explore What’s Available
2. Build the Graph
Every ClyptQ strategy is a directed acyclic graph (DAG) of operators. Data flows from FIELD inputs through operators to intentions:Terms like
StatefulGraph, FIELD, Input, and TaggedArray are explained in Core Concepts. For now, just follow the pattern — everything will make sense after reading that page.3. Configure the Spec
TradingSpec combines data, strategy, and execution into one configuration:
4. Run the Backtest
5. Analyze Results
6. Deploy to Paper or Live
Paper and live trading are not run from notebook cells. Once you’ve validated your strategy in backtest, submit it to the platform:- Submit your strategy code via the dashboard
- The platform independently validates and backtests your strategy
- Start a Paper Trade or Live Trade run from the dashboard — no code changes needed
StatefulGraph you built in your notebook runs identically in paper and live modes on the platform. See Backtest to Live and the Builder Guide for the full submission flow.
What’s Next?
FIELD/STATE Principles
Understand how data flows through the graph
Operator Reference
Browse operators: indicators, signals, transforms, AI
Backtesting Accuracy
Cost models, funding rates, liquidation simulation
First Strategy Tutorial
Extended tutorial with detailed explanations

