自动刷新改用 tail update 与 scrollToPosition 恢复视窗,避免 setData 后跳到最右;拆分 chart_tv 模块并扩展 analyze/recent API。同步威科夫分析、pipeline 增量构建及相关策略与配置。 Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
281 B
Python
8 lines
281 B
Python
"""威科夫分析(启发式):交易区间 / 阶段 / 事件 / Volume Profile / Live。"""
|
|
from __future__ import annotations
|
|
|
|
from .engine import analyze_wyckoff
|
|
from .live import execution_signal_from_wyckoff
|
|
|
|
__all__ = ["analyze_wyckoff", "execution_signal_from_wyckoff"]
|