This commit is contained in:
dsyoon
2022-12-31 14:39:33 +09:00
parent 8d8150f989
commit 994629fe7d

View File

@@ -526,8 +526,8 @@ class AnalyzerSqlite:
if stock_monthly['envelope_lower'][c_index+1] is None: if stock_monthly['envelope_lower'][c_index+1] is None:
break break
if stock_monthly['close'][c_index] <= (stock_monthly['envelope_lower'][c_index+1]): if stock_monthly['close'][c_index] <= (stock_monthly['envelope_lower'][c_index+1]):
dir_code = "5" dir_code = "6"
dir_name = "monthly_BB하단_내려옴" dir_name = "monthly_EV하단_내려옴"
final_status_count += 1 final_status_count += 1
self.writeFile(dir_code, dir_name, CODE, NAME, top, stock_monthly, status) self.writeFile(dir_code, dir_name, CODE, NAME, top, stock_monthly, status)
break break
@@ -636,7 +636,7 @@ class AnalyzerSqlite:
break break
if stock_daily['close'][c_index] <= (stock_daily['envelope_lower'][c_index+1]): if stock_daily['close'][c_index] <= (stock_daily['envelope_lower'][c_index+1]):
dir_code = "26" dir_code = "26"
dir_name = "daily_BB하단_내려옴" dir_name = "daily_EV하단_내려옴"
final_status_count += 1 final_status_count += 1
self.writeFile(dir_code, dir_name, CODE, NAME, top, stock_monthly, status) self.writeFile(dir_code, dir_name, CODE, NAME, top, stock_monthly, status)
break break