This commit is contained in:
윤도상/택배파트
2024-11-01 09:02:49 +09:00
parent ed9786e97a
commit a80fe58750

View File

@@ -634,7 +634,7 @@ class Common:
check = True check = True
break break
# 볼린저 밴드 %B와 MFI로 매수 시점 # 볼린저 밴드 %B와 MFI로 매수 시점
if len(stock['pb']) > 2 and len(stock['mfi']) > 2: if len(stock['pb']) > 2 and stock['pb'][i+1] is not None and len(stock['mfi']) > 2 and stock['mfi'][i] is not None:
if 80 < stock['pb'][i+1] and 80 < stock['mfi'][i]: if 80 < stock['pb'][i+1] and 80 < stock['mfi'][i]:
check = True check = True
break break