This commit is contained in:
dsyoon
2023-08-17 10:56:38 +09:00
parent 89d11ff0f5
commit fc224b938b
2 changed files with 15 additions and 0 deletions

View File

@@ -564,6 +564,13 @@ class Common:
return False
# daily_5일선_돌파
def check_5_moving_line(self, stock, type="daily"):
if (stock['close'][1] < stock['avg5'][1] and stock['avg5'][0] <= stock['close'][0]):
return True
return False
# 낙폭 과대 체크
def check_excessive_drop(self, stock):
c_index = 200