This commit is contained in:
dsyoon
2023-09-02 20:40:14 +09:00
parent b36d2c30f1
commit d9343af937

View File

@@ -968,7 +968,7 @@ class AnalyzerSqlite:
print("Daily # :", rowid, ", CODE: ", stock['CODE'], ", NAME: ", stock['NAME'])
sql = 'SELECT ymd, close, diff, open, high, low, volume FROM ' + stockTableName + ' where CODE=? order by ymd desc '
#sql += ' limit 350'
sql += ' limit 500'
cursor.execute(sql, (stock['CODE'],))
items = cursor.fetchall()