quant-web/backtest.py
epistemophiliac 627b2326df Add Python strategy engine, parameter optimization, and faster Docker builds.
Support builtin and custom generate_signals strategies with SQLite persistence, exhaustive grid scans (VectorBT comb optimization for MA crossover), professional backtest/optimize UI, and split harvester/app requirements with BuildKit pip cache.
2026-06-19 01:29:28 -04:00

5 lines
156 B
Python

"""Backward-compatible exports."""
from engine import BacktestResult, load_ohlcv, run_backtest
__all__ = ["BacktestResult", "load_ohlcv", "run_backtest"]