diff --git a/stock/analysis/AnalyzerSqlite.py b/stock/analysis/AnalyzerSqlite.py index 83739fd..0670d83 100644 --- a/stock/analysis/AnalyzerSqlite.py +++ b/stock/analysis/AnalyzerSqlite.py @@ -526,8 +526,8 @@ class AnalyzerSqlite: if stock_monthly['envelope_lower'][c_index+1] is None: break if stock_monthly['close'][c_index] <= (stock_monthly['envelope_lower'][c_index+1]): - dir_code = "5" - dir_name = "monthly_BB하단_내려옴" + dir_code = "6" + dir_name = "monthly_EV하단_내려옴" final_status_count += 1 self.writeFile(dir_code, dir_name, CODE, NAME, top, stock_monthly, status) break @@ -636,7 +636,7 @@ class AnalyzerSqlite: break if stock_daily['close'][c_index] <= (stock_daily['envelope_lower'][c_index+1]): dir_code = "26" - dir_name = "daily_BB하단_내려옴" + dir_name = "daily_EV하단_내려옴" final_status_count += 1 self.writeFile(dir_code, dir_name, CODE, NAME, top, stock_monthly, status) break