This commit is contained in:
aaron 2024-06-07 11:09:54 +08:00
parent 94ca608033
commit 8e058603ff

10
main.py
View File

@ -5,11 +5,15 @@ import monitors.vegas as vegas
import monitors.large_transfer as lt
import utils
# 监控
# 监控大额转账
schedule.every(setting.whaleAlert_minutes).minutes.do(lt.run)
schedule.every().hour.at(":01").do(vegas.run_crypto, interval = '1h')
schedule.every().hour.at(":01").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')
print(f'Running... V1.1')
print(f'Pairs:')