From 7520c8ae74b8e35a9519734fdca1009a191f1de1 Mon Sep 17 00:00:00 2001 From: dsyoon Date: Fri, 5 May 2023 15:55:25 +0900 Subject: [PATCH] init --- stock/analysis/AnalyzerSqlite.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stock/analysis/AnalyzerSqlite.py b/stock/analysis/AnalyzerSqlite.py index 7f209fe..7a6a925 100644 --- a/stock/analysis/AnalyzerSqlite.py +++ b/stock/analysis/AnalyzerSqlite.py @@ -461,7 +461,7 @@ class AnalyzerSqlite: # 종목 상태 체크 분석 # Monthly 체크 - if len(stock_monthly['volume']) > 10: + if len(stock_monthly['volume']) > 40: # ENV 하단 상향 돌파 check = self.common.check_env_lower_rsi(stock_monthly) @@ -478,7 +478,7 @@ class AnalyzerSqlite: self.writeFile(dir_name, CODE, NAME, top, stock_monthly, log) # Weekly 체크 - if len(stock_weekly['volume']) > 20: + if len(stock_weekly['volume']) > 40: # 5주 check = self.common.check_week_5_20(stock_weekly)