From a37074e3366ddc71a270b46a6c30bf68a6e85cb3 Mon Sep 17 00:00:00 2001 From: MuslemRahimi Date: Wed, 16 Oct 2024 16:38:59 +0200 Subject: [PATCH] bugfixing --- app/cron_market_movers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/cron_market_movers.py b/app/cron_market_movers.py index cd04401..d6bab58 100755 --- a/app/cron_market_movers.py +++ b/app/cron_market_movers.py @@ -298,6 +298,8 @@ try: cursor.execute("PRAGMA journal_mode = wal") cursor.execute("SELECT DISTINCT symbol FROM stocks") symbols = [row[0] for row in cursor.fetchall()] + #Filter out tickers + symbols = [symbol for symbol in symbols if symbol != "STEC"] data = asyncio.run(get_historical_data()) with open(f"json/mini-plots-index/data.json", 'w') as file: