wbt 0.1.8

Weight-based backtesting engine for quantitative trading
1
2
3
4
5
6
7
8
9
from __future__ import annotations

import wbt


def test_public_exports() -> None:
    """验证包公开导出的核心对象可用。"""
    assert wbt.WeightBacktest is not None
    assert wbt.daily_performance is not None