-
Notifications
You must be signed in to change notification settings - Fork 0
/
pausebotmod.py
57 lines (48 loc) · 1.8 KB
/
pausebotmod.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from tradingview_ta import TA_Handler, Interval, Exchange
import os
import time
import threading
INTERVAL = Interval.INTERVAL_1_MINUTE #Timeframe for analysis
EXCHANGE = 'BINANCE'
SCREENER = 'CRYPTO'
SYMBOL = 'BTCUSDT'
THRESHOLD = 7 # 7 of 15 MA's indicating sell
TIME_TO_WAIT = 1 # Minutes to wait between analysis
FULL_LOG = False # List analysis result to console
def analyze():
analysis = {}
handler = {}
handler = TA_Handler(
symbol=SYMBOL,
exchange=EXCHANGE,
screener=SCREENER,
interval=INTERVAL,
timeout= 10)
try:
analysis = handler.get_analysis()
except Exception as e:
print("pausebotmod:")
print("Exception:")
print(e)
ma_sell = analysis.moving_averages['SELL']
if ma_sell >= THRESHOLD:
paused = True
print(f'pausebotmod: Market not looking too good, bot paused from buying {ma_sell}/{THRESHOLD} Waiting {TIME_TO_WAIT} minutes for next market checkup')
else:
print(f'pausebotmod: Market looks ok, bot is running {ma_sell}/{THRESHOLD} Waiting {TIME_TO_WAIT} minutes for next market checkup ')
paused = False
return paused
#if __name__ == '__main__':
def do_work():
while True:
if not threading.main_thread().is_alive(): exit()
# print(f'pausebotmod: Fetching market state')
paused = analyze()
if paused:
with open('signals/paused.exc','a+') as f:
f.write('yes')
else:
if os.path.isfile("signals/paused.exc"):
os.remove('signals/paused.exc')
# print(f'pausebotmod: Waiting {TIME_TO_WAIT} minutes for next market checkup')
time.sleep((TIME_TO_WAIT*60))