This commit is contained in:
dsyoon
2024-02-06 01:26:20 +09:00
parent 640dea914c
commit 62e6a6e219
2 changed files with 2 additions and 2 deletions

View File

@@ -567,7 +567,7 @@ class Common:
def check_optimal_buy_timeing(self, param, stock):
check = False
if len(stock['trend']) < 1:
if len(stock['trend']) < 10:
return check
if (stock['close'][1] is None or stock['close'][0] is None or stock['rsi'][1] is None or stock['rsi'][0] is None):