This commit is contained in:
dosangyoon
2021-08-16 00:12:37 +09:00
parent 87837dbc25
commit 4dfc5a8817

View File

@@ -414,6 +414,11 @@ class Analyzer:
fileName = "%s/p(%.2f)__b(%.2f)__s(%.2f)__%s__%s_%s.html" % (fileName, positionalEnergy, bolingerband_score, stochastic_score, state, item_name.replace(" ", ""), item_code)
po.write_html(fig, file=fileName, auto_open=False)
if state != "":
fileName = self.outPath
fileName = "%s/%s__p(%.2f)__b(%.2f)__s(%.2f)__%s_%s.html" % (fileName, state, positionalEnergy, bolingerband_score, stochastic_score, item_name.replace(" ", ""), item_code)
po.write_html(fig, file=fileName, auto_open=False)
return
def makeDirectory(self, outPath):