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()