This commit is contained in:
dsyoon
2022-12-31 02:02:37 +09:00
parent aa95c14819
commit 597f37f23f

View File

@@ -596,7 +596,7 @@ class AnalyzerSqlite:
if len(stock_daily['close']) < c_index:
c_index = len(stock_daily['close'])
location = (max(stock_daily['close'][1:c_index]) - stock_daily['close'][0]) / max(stock_daily['close'][1:c_index])
if location < 0.5:
if location > 0.5:
type = "daily_낙폭과대"
final_status += " " + type
final_status_count += 1