"""快速三类买卖点 —— 实现已移入引擎 `chanlun.analysis.fast_bsp`。 这里只做转发,保证 step 脚本里的 `from lib.fast_bsp3 import find_fast_bsp3` 不用改, 同时让回测与 web 图表共用同一份代码。设计说明见引擎模块的 docstring。 """ from __future__ import annotations import sys from pathlib import Path sys.path.insert(0, str(Path(__file__).resolve().parents[2])) from chanlun.analysis.fast_bsp import find_fast_bsp3 # noqa: F401,E402 __all__ = ["find_fast_bsp3"]