TradAI Quickstart Guides¶
Get started with TradAI in minutes. These guides walk you through the most common workflows.
Available Guides¶
| Guide | Time | Description |
|---|---|---|
| Your First Backtest | 5 min | Run a strategy backtest end-to-end |
| Create a New Strategy | 15 min | Build a custom trading strategy |
| Collect Market Data | 5 min | Sync OHLCV data from exchanges |
Related Resources¶
| Resource | Description |
|---|---|
| Strategy Templates | Ready-to-use templates for different trading styles |
| CLI Reference | Run tradai --help for full command reference |
Prerequisites¶
Before starting any quickstart, ensure:
- UV installed:
curl -LsSf https://astral.sh/uv/install.sh | sh - Just installed:
brew install just(macOS) orcargo install just - Workspace setup: Run
just setupfrom the repository root
Recommended Learning Path¶
1. Your First Backtest Run existing strategy
↓
2. Collect Market Data Get more trading pairs
↓
3. Create New Strategy Build your own
Quick Reference¶
Essential Commands¶
# Start all services
just up
# Stop all services
just down
# Run quality checks
just check
# Run tests
just test
Service Ports¶
| Service | Port | Description |
|---|---|---|
| Backend | 8000 | API gateway |
| Data Collection | 8002 | Market data sync |
| Strategy Service | 8003 | Backtesting |
| MLflow | 5001 | Experiment tracking |
Next Steps¶
After completing the quickstarts:
- Explore the Architecture Overview
- Review the Developer Guides
- Check out Services Documentation