将核心结构、指标与分析拆到 chan/{core,indicators,analysis,pipeline};
根目录保留兼容 shim;strategies 改为从 chan 包导入;买卖点经 bsp_macd 与 MACD 接合。
Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
379 B
Python
20 lines
379 B
Python
"""分析层:结构 + 指标的接合(MACD 状态、买卖点确认、Zone 等)。"""
|
|
|
|
from .bsp_macd import (
|
|
ConfirmedBSP,
|
|
bi_macd_area,
|
|
check_bi_div,
|
|
check_bi_pair_div,
|
|
confirm_bsp,
|
|
)
|
|
from .ChanMACD import ChanMACD
|
|
|
|
__all__ = [
|
|
"ChanMACD",
|
|
"ConfirmedBSP",
|
|
"bi_macd_area",
|
|
"check_bi_div",
|
|
"check_bi_pair_div",
|
|
"confirm_bsp",
|
|
]
|