Documentation
Guides for running coded strategies.
Explore architecture decisions, integration examples, and operational playbooks. These resources help quants and engineers onboard quickly while maintaining robust production workflows.
Strategy examples
These are readable templates you can translate into your coded strategy layer. Keep the first version simple and add risk controls after the signal is verified.
MA Crossover
Trend-following signal using two moving averages.
SMA_short > SMA_longSMA_short < SMA_longRSI Mean Reversion
Buy oversold conditions and exit on strength.
RSI < 30RSI > 70Breakout + Volume
Breakout confirmation with a simple liquidity filter.
close > high[-1] && volume > thresholdclose < SMA_shortPlatform Overview
Architecture
Understand the data pipeline, execution layers, and deployment model.
Environments
Configure sandboxes, staging, and production clusters for your team.
Build Guides
Strategy Templates
Use boilerplates for momentum, mean reversion, and multi-asset spreads.
Data Adapters
Plug into equities, futures, FX, and alternative data with typed adapters.
Operations
Scheduling
Manage nightly replays, event-driven runs, and rolling optimizations.
Monitoring
Set alerts for data drift, performance anomalies, and infrastructure health.