-
Notifications
You must be signed in to change notification settings - Fork 6
/
yobit_bot.py
64 lines (48 loc) · 2.45 KB
/
yobit_bot.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
58
59
60
61
62
63
64
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""
Code was writen by Oleg Volkov https://github.com/oavolkov
"""
import json
import requests.exceptions
from yobit_bot_functions import *
from yobit_bot_main_flow import main_flow
# ----------------------------------- Главный цикл -----------------------------------
try:
# Создаем объект для методов API-интерфейса биржи
y_api = yobit.YobitAPI(CONFIG['API_KEY'], CONFIG['API_SECRET'], CONFIG['API_NONCEPATH'])
# # Получаем список валют по всем валютным парам
# currencies = get_currencies(CONFIG['MARKETS'])
# Получаем настройки валютных пар по всем валютным парам
pairs_info = get_pairs_info(y_api)
# Бесконечный цикл процесса - основная логика
while True:
timeout = 10 # Задержка между итерациями
# Проходим по каждой паре из определенных к торгам
for pair in CONFIG['MARKETS']:
# ---------------------------------------------------------
# Вызываем главную функцию, реализующую аглоритм трейдинга
# ---------------------------------------------------------
try:
main_flow(y_api, pair, pairs_info)
except ScriptError as serr:
print(serr)
except ScriptQuitCondition as sqc:
print(sqc)
except requests.HTTPError as httperr:
timeout = 10
print('Ошибка получения ответа с биржи: [' + type(httperr).__name__ + ']', httperr)
except json.decoder.JSONDecodeError as jsonerr:
timeout = 10
print('Ошибка декодирования ответа с биржи: [' + type(jsonerr).__name__ + ']', jsonerr)
except yobit.YobitException as yerr:
print('Ошибочный ответ с биржи: [' + type(yerr).__name__ + ']', yerr)
finally:
print('')
print('-' * 15, '\n')
time.sleep(timeout)
except KeyboardInterrupt:
pass
except Exception as errex:
print('General exception: [' + type(errex).__name__ + ']', errex)
exit()