Skip to content

AlgoFlow Documentation

Version

Web-based quantitative trading platform with automated data pipelines and backtesting infrastructure.

Current Status

Data pipeline operational - Historical and daily DAGs running in production

Components

  • Data Pipeline - Airflow-based securities data ingestion from yfinance
  • API Reference - Complete pipeline and client documentation

Local Development

Test docs locally with hot reload:

# Create venv and install dependencies
python3 -m venv .venv
source .venv/bin/activate
pip install -r docs/requirements.txt

# Serve at http://127.0.0.1:8000
mkdocs serve

# Build static site
mkdocs build