This commit is contained in:
MuslemRahimi 2025-01-24 13:30:26 +01:00
parent b89a46a98e
commit a0870a1baa

View File

@ -103,8 +103,6 @@ def run_options_jobs():
run_command(["python3", "cron_options_hottest_contracts.py"]) run_command(["python3", "cron_options_hottest_contracts.py"])
run_command(["python3", "cron_options_oi.py"]) run_command(["python3", "cron_options_oi.py"])
run_command(["python3", "cron_implied_volatility.py"]) run_command(["python3", "cron_implied_volatility.py"])
run_command(["python3", "cron_options_stats.py"])
''' '''
run_command(["python3", "cron_options_gex_dex.py"]) run_command(["python3", "cron_options_gex_dex.py"])
''' '''
@ -424,7 +422,7 @@ schedule.every(3).hours.do(run_threaded, run_press_releases).tag('press_release_
#schedule.every(1).hours.do(run_threaded, run_fda_calendar).tag('fda_calendar_job') #schedule.every(1).hours.do(run_threaded, run_fda_calendar).tag('fda_calendar_job')
schedule.every(15).minutes.do(run_threaded, run_options_stats).tag('options_stats_job') schedule.every(20).minutes.do(run_threaded, run_options_stats).tag('options_stats_job')
schedule.every(5).minutes.do(run_threaded, run_market_flow).tag('market_flow_job') schedule.every(5).minutes.do(run_threaded, run_market_flow).tag('market_flow_job')
schedule.every(5).minutes.do(run_threaded, run_list).tag('stock_list_job') schedule.every(5).minutes.do(run_threaded, run_list).tag('stock_list_job')