init
This commit is contained in:
@@ -643,9 +643,10 @@ class Common:
|
|||||||
check = True
|
check = True
|
||||||
|
|
||||||
# slow_k가 10이하에서 상승 중이고 slow_d를 상승 돌파 할 때
|
# slow_k가 10이하에서 상승 중이고 slow_d를 상승 돌파 할 때
|
||||||
if stock['slow_k'][1] < stock['slow_d'][1] and stock['slow_d'][0] < stock['slow_k'][0] and stock['slow_k'][0] < 10:
|
if stock['slow_k'][0] is not None and stock['slow_k'][1] is not None:
|
||||||
if stock['avg120'][0] < stock['trend_k'][0]:
|
if stock['slow_k'][1] < stock['slow_d'][1] and stock['slow_d'][0] < stock['slow_k'][0] and stock['slow_k'][0] < 10:
|
||||||
check = True
|
if stock['avg120'][0] < stock['trend_k'][0]:
|
||||||
|
check = True
|
||||||
|
|
||||||
return check
|
return check
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user