This commit is contained in:
dosangyoon
2021-10-01 23:08:55 +09:00
parent 3c33986bdd
commit 69acec2a8c
4 changed files with 1316 additions and 326 deletions

View File

@@ -128,6 +128,8 @@ class Common:
return score
# YANGBONG
# 어제 음봉 이후 장대양봉이었다면, 매수
def checkLongYangBongAfterUmBong(self, stock, i):
if i > 0:
if stock[i-1]['close'] < stock[i-1]['open']: # 어제가 음봉인지 체크
@@ -160,6 +162,7 @@ class Common:
return "GRAVESTONE_"
return ""
# 하락 추세에서 드레곤플라이가 나오면 매수
def checkDragonfly(self, stock, i):
# 하락 추세이고, 그저께, 어제 음봉이고, 오늘 드레곤플라이인지 체크한다
if i > 1: