This commit is contained in:
dsyoon
2023-10-22 22:49:54 +09:00
parent b81344ae32
commit 3a7107ab76

View File

@@ -574,6 +574,9 @@ class Common:
def check_optimal_buy_timeing(self, stock):
if stock['slow_k'][0] is None:
return False
max_vol_5 = max(stock['volume'][0: 4])
max_vol_30 = max(stock['volume'][4: 24])
if max_vol_30 < max_vol_5: