添加k线动能理论

This commit is contained in:
jackyu66git
2025-08-14 02:29:27 +08:00
parent 285f62f1ab
commit 15a3df55db
16 changed files with 1400 additions and 170 deletions
+21 -2
View File
@@ -72,8 +72,27 @@ class Chan_KLC_FX(Enum):
BOTTOM3 = auto()
BOTTOM4 = auto()
UNKNOWN = auto()
class Chan_MACD_STATE(Enum):
GW = auto()
GWK = auto()
UP = auto()
DOWN = auto()
CROSS0 = auto()
UNKNOWN = auto()
START = auto()
NEAR0 = auto()
class Chan_MACDSEG_DIR(Enum):
ABOVE = auto()
UNDER = auto()
class Chan_MACDHISTSET_DIR(Enum):
ABOVE = auto()
UNDER = auto()
class Chan_MACDHIST_STATE(Enum):
UP = auto()
DOWN = auto()
PEAK = auto()
UNKNOWN = auto()
class Chan_BI_DIR(Enum):
UP = auto()
DOWN = auto()