From 6fd82a0f4a12783222de2a3f468a8cca036d5934 Mon Sep 17 00:00:00 2001 From: MuslemRahimi Date: Tue, 13 Aug 2024 10:56:31 +0200 Subject: [PATCH] remove implied volatility cron job --- app/primary_cron_job.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/primary_cron_job.py b/app/primary_cron_job.py index 8ca9beb..a1486a9 100755 --- a/app/primary_cron_job.py +++ b/app/primary_cron_job.py @@ -403,6 +403,7 @@ def run_borrowed_share(): ] run_command(command) +''' def run_implied_volatility(): run_command(["python3", "cron_implied_volatility.py"]) command = [ @@ -411,6 +412,7 @@ def run_implied_volatility(): f"root@{useast_ip_address}:/root/backend/app/json" ] run_command(command) +''' def run_options_net_flow(): run_command(["python3", "cron_options_net_flow.py"]) @@ -488,7 +490,7 @@ schedule.every().day.at("10:30").do(run_threaded, run_sec_filings).tag('sec_fili schedule.every().day.at("11:00").do(run_threaded, run_executive).tag('executive_job') schedule.every().day.at("03:00").do(run_threaded, run_retail_volume).tag('retail_volume_job') schedule.every().day.at("11:45").do(run_threaded, run_clinical_trial).tag('clinical_trial_job') -schedule.every().day.at("05:00").do(run_threaded, run_implied_volatility).tag('implied_volatility_job') +#schedule.every().day.at("05:00").do(run_threaded, run_implied_volatility).tag('implied_volatility_job') schedule.every().day.at("13:30").do(run_threaded, run_stockdeck).tag('stockdeck_job')