将核心结构、指标与分析拆到 chan/{core,indicators,analysis,pipeline};
根目录保留兼容 shim;strategies 改为从 chan 包导入;买卖点经 bsp_macd 与 MACD 接合。
Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
170 B
Python
7 lines
170 B
Python
class Chan_FX_Box():
|
|
def __init__(self, start_time, end_time, high, low):
|
|
self.start_time = start_time
|
|
self.end_time = end_time
|
|
self.high = high
|
|
self.low = low
|
|
|