This commit is contained in:
aaron 2024-07-29 12:05:00 +08:00
parent 7b34e6cd4a
commit 85a7b73f36

14
main.py
View File

@ -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') schedule.every().hour.at(":00").do(move.run_crypto, interval = '1h')
#vegas #vegas
schedule.every().hour.at(":00").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(":30").do(vegas.run_crypto, interval = '30m')
schedule.every().hour.at(":00").do(vegas.run_crypto, interval = '1h') # schedule.every().hour.at(":00").do(vegas.run_crypto, interval = '1h')
times = ["00:00", "04:00", "08:00", "12:00", "16:00", "20:00"] # times = ["00:00", "04:00", "08:00", "12:00", "16:00", "20:00"]
for t in times: # for t in times:
schedule.every().day.at(t).do(vegas.run_crypto, interval = '4h') # schedule.every().day.at(t).do(vegas.run_crypto, interval = '4h')
version = 'V1.7' version = 'V1.8'
print(f'Running... {version}') print(f'Running... {version}')
while True: while True:
schedule.run_pending() schedule.run_pending()