This commit is contained in:
dsyoon
2024-02-14 02:14:29 +09:00
parent e1ea28ab8a
commit 240774a42e

View File

@@ -379,7 +379,7 @@ class AnalyzerSqlite:
sql += ' mfi, '
sql += ' last_min, last_max, last_middle, '
sql += ' trend, trend_k, trend_s '
sql += ' FROM ' + TableName + ' where CODE=? order by ymd limit 512 '
sql += ' FROM ' + TableName + ' where CODE=? order by ymd limit 1024 '
cursor.execute(sql, (CODE,))
prices = cursor.fetchall()