将核心结构、指标与分析拆到 chan/{core,indicators,analysis,pipeline};
根目录保留兼容 shim;strategies 改为从 chan 包导入;买卖点经 bsp_macd 与 MACD 接合。
Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
217 B
Python
7 lines
217 B
Python
"""缠论引擎包:core(结构)/ indicators(指标)/ analysis(接合)/ pipeline(编排)。"""
|
|
|
|
from .pipeline.ChanLun import ChanLun
|
|
from .pipeline.TF_DF import TF_DF
|
|
|
|
__all__ = ["ChanLun", "TF_DF"]
|