From 85a7b73f36d9d9ce759d1b43dda68479263add82 Mon Sep 17 00:00:00 2001 From: aaron <> Date: Mon, 29 Jul 2024 12:05:00 +0800 Subject: [PATCH] 1 --- main.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/main.py b/main.py index 227c785..0df801e 100644 --- a/main.py +++ b/main.py @@ -17,15 +17,15 @@ schedule.every().hour.at(":45").do(move.run_crypto, interval = '15m') schedule.every().hour.at(":00").do(move.run_crypto, interval = '1h') #vegas -schedule.every().hour.at(":00").do(vegas.run_crypto, interval = '30m') -schedule.every().hour.at(":30").do(vegas.run_crypto, interval = '30m') +# schedule.every().hour.at(":00").do(vegas.run_crypto, interval = '30m') +# schedule.every().hour.at(":30").do(vegas.run_crypto, interval = '30m') -schedule.every().hour.at(":00").do(vegas.run_crypto, interval = '1h') -times = ["00:00", "04:00", "08:00", "12:00", "16:00", "20:00"] -for t in times: - schedule.every().day.at(t).do(vegas.run_crypto, interval = '4h') +# schedule.every().hour.at(":00").do(vegas.run_crypto, interval = '1h') +# times = ["00:00", "04:00", "08:00", "12:00", "16:00", "20:00"] +# for t in times: +# schedule.every().day.at(t).do(vegas.run_crypto, interval = '4h') -version = 'V1.7' +version = 'V1.8' print(f'Running... {version}') while True: schedule.run_pending()