From b3c2c3f974c1ee4b5a24e9379d8d179e0da9f32d Mon Sep 17 00:00:00 2001 From: MuslemRahimi Date: Thu, 12 Sep 2024 19:25:15 +0200 Subject: [PATCH] update options flow cron job --- app/cron_options_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cron_options_flow.py b/app/cron_options_flow.py index 3d39090..a61e6b5 100755 --- a/app/cron_options_flow.py +++ b/app/cron_options_flow.py @@ -50,7 +50,7 @@ def process_page(page): asset_type = 'stock' if ticker in stock_symbols else ('etf' if ticker in etf_symbols else '') - item['assetType'] = asset_type + item['underlying_type'] = asset_type.lower() item['put_call'] = put_call item['ticker'] = ticker item['price'] = round(float(item['price']), 2)