From dd33a23879ec8bfbbae2475b7e07c26bae5b06e6 Mon Sep 17 00:00:00 2001 From: MuslemRahimi Date: Sat, 5 Oct 2024 11:26:06 +0200 Subject: [PATCH] remove print --- app/cron_options_gex.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/cron_options_gex.py b/app/cron_options_gex.py index a5fbf6b..4383e8f 100644 --- a/app/cron_options_gex.py +++ b/app/cron_options_gex.py @@ -383,8 +383,7 @@ for ticker in total_symbols: df_price = df_price.rename(columns={"change_percent": "changesPercentage"}) volatility = calculate_volatility(df_price) - print(df_price) - print(volatility) + ticker_data = get_data(ticker) # Group ticker_data by 'date' and collect all items for each date grouped_history = defaultdict(list)