bugfixing

This commit is contained in:
MuslemRahimi 2025-02-09 18:13:34 +01:00
parent c9cf6a2aac
commit d44b5abac9
2 changed files with 3 additions and 6 deletions

View File

@ -265,8 +265,8 @@ async def get_data():
longitude = location_data.longitude longitude = location_data.longitude
print(f"Latitude: {latitude}, Longitude: {longitude}") print(f"Latitude: {latitude}, Longitude: {longitude}")
break break
except Exception as e: except:
print(e) pass
for item in data: for item in data:
for price_item in sp500_list: for price_item in sp500_list:

View File

@ -98,11 +98,8 @@ def run_options_jobs():
run_command(["python3", "cron_options_historical_volume.py"]) run_command(["python3", "cron_options_historical_volume.py"])
run_command(["python3", "cron_options_hottest_contracts.py"]) run_command(["python3", "cron_options_hottest_contracts.py"])
run_command(["python3", "cron_implied_volatility.py"]) run_command(["python3", "cron_implied_volatility.py"])
run_command(["python3", "cron_options_oi.py"])
'''
run_command(["python3", "cron_options_gex_dex.py"]) run_command(["python3", "cron_options_gex_dex.py"])
''' run_command(["python3", "cron_options_oi.py"])
def run_cron_insider_trading(): def run_cron_insider_trading():