This commit is contained in:
dsyoon
2023-05-05 19:49:21 +09:00
parent 5c19a09b7e
commit 545014bf01

View File

@@ -477,6 +477,13 @@ class AnalyzerSqlite:
log = "RSI_" + "{:.2f}".format(stock_monthly['rsi'][0])
self.writeFile(dir_name, CODE, NAME, top, stock_monthly, log)
# 5개월 20개월 선
check = self.common.check_mv_5_20(stock_monthly)
if check:
dir_name = "monthly_mv_5_20"
log = "RSI_" + "{:.2f}".format(stock_monthly['rsi'][0])
self.writeFile(dir_name, CODE, NAME, top, stock_monthly, log)
# 20개월 60개월 선
check = self.common.check_mv_20_60(stock_monthly)
if check: