This commit is contained in:
dosang.yoon
2022-02-26 14:15:37 +09:00
parent 80e8ee687d
commit dc10c1b995

View File

@@ -422,8 +422,8 @@ class AnalyzerSqlite:
self.makeDir("1_거래량_상승")
self.makeDir("1_코로나_근접")
self.makeDir("5_거래량 10배 이상")
self.makeDir("6_bolingerband 하단 돌파 상승")
self.makeDir("7_정배열")
self.makeDir("6_정배열")
self.makeDir("7_bolingerband 하단 돌파 상승")
self.makeDir("8_저점_매수관심")
self.makeDir("9_저점_매수")
@@ -721,14 +721,14 @@ class AnalyzerSqlite:
type = "5_거래량 10배 이상"
self.writeFile(type, CODE, NAME, top, stock, state)
if (len(close) > 60 and (bolingerband_lower[0] is not None and bolingerband_lower[1] is not None) and
close[0] > bolingerband_lower[0] and close[1] < bolingerband_lower[1]):
type = "6_bolingerband 하단 돌파 상승"
self.writeFile(type, CODE, NAME, top, stock, state)
right_arrange = self.common.check_RightArrange(stock)
if right_arrange != "":
type = "7_정배열"
type = "6_정배열"
self.writeFile(type, CODE, NAME, top, stock, state)
if (len(close) > 60 and (bolingerband_lower[0] is not None and bolingerband_lower[1] is not None) and
close[0] > bolingerband_lower[0] and close[1] < bolingerband_lower[1]):
type = "7_bolingerband 하단 돌파 상승"
self.writeFile(type, CODE, NAME, top, stock, state)
if len(close) > 50: