This commit is contained in:
dsyoon
2024-11-06 20:33:15 +09:00
parent 7ca2011843
commit 1e5567d7de
2 changed files with 5 additions and 5 deletions

View File

@@ -718,9 +718,9 @@ class Common:
return False
def buy_stock_daily_20_60(self, stock_daily):
def buy_stock_daily_3_5(self, stock_daily):
if stock_daily['avg20'][1] < stock_daily['avg60'][1] and stock_daily['avg60'][0] < stock_daily['avg20'][0]:
if stock_daily['avg3'][1] < stock_daily['avg5'][1] and stock_daily['avg5'][0] < stock_daily['avg3'][0]:
return True
return False