fd86190e9a
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
496 B
496 B
Chinese Equity Quant Research Framework
Architecture
- backtrader is the backtesting engine — never reimplement backtest logic
- akshare primary data source, baostock secondary fallback
- Daily frequency only (Phase 1)
Key Commands
python3 run_example.py— smoke testpython3 -m pytest tests/ -v— run testspip install -r requirements.txt— install deps
Code Standards
- Type hints on public functions
- Google-style docstrings
- 4-space indentation for Python