添加动能理论,修改klc整体显示

This commit is contained in:
jackyu66git
2026-04-10 13:01:07 +08:00
parent 957ef62407
commit 7815eada00
5 changed files with 124 additions and 91 deletions
+2 -2
View File
@@ -372,14 +372,14 @@ class ChanKLC():
end_time = self.next.end_time
high = self.high
low = self.pre.low if self.pre.low < self.next.low else self.next.low
if self.next.close < self.pre.low:
if self.next.close < self.pre.low or True:
display = True
elif self.fx == Chan_FX_TYPE.BOTTOM:
start_time = self.pre.end_time
end_time = self.next.end_time
high = self.pre.high if self.pre.high > self.next.high else self.next.high
low = self.low
if self.next.close > self.pre.high:
if self.next.close > self.pre.high or True:
display = True
if high > 0 and self.next.end_time and display:
#print(start_time, end_time, high, low)