-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
423 lines (369 loc) · 18.7 KB
/
main.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
import base64
import hashlib
import hmac
from collections import OrderedDict
from copy import deepcopy
from datetime import datetime
import json
import math
import sys
import time
import warnings
from pprint import pformat
from dateutil.parser import parse
from dateutil.tz import tzlocal
import numpy as np
import pytz
from PyQt4 import QtGui, uic
from PyQt4.QtCore import QThread, SIGNAL, QUrl, Qt, QTimer, QObject
from PyQt4.QtGui import QColor, QTableWidgetItem, QHeaderView, QTreeWidgetItem
from PyQt4.QtNetwork import QNetworkAccessManager, QNetworkRequest
from decimal import Decimal
from vispy import gloo, app
import websocket
from config import COINBASE_EXCHANGE_API_KEY, COINBASE_EXCHANGE_API_SECRET, COINBASE_EXCHANGE_API_PASSPHRASE
from order_book.book import Book
main_app = QtGui.QApplication(sys.argv)
class LimitTreeWidgetItem(QTreeWidgetItem):
def __init__(self, parent=None, columns=()):
QtGui.QTreeWidgetItem.__init__(self, parent, columns)
def __lt__(self, other_item):
column = self.treeWidget().sortColumn()
return float(self.text(column)) < float(other_item.text(column))
with warnings.catch_warnings(record=True):
WindowTemplate, TemplateBaseClass = uic.loadUiType('qt-designer.ui')
class MainWindow(TemplateBaseClass):
def __init__(self):
TemplateBaseClass.__init__(self)
self.order_book = Book()
self.manager = QNetworkAccessManager(self)
self.ui = WindowTemplate()
self.ui.setupUi(self)
self.matches = []
self.get_order_book()
self.start_websocket()
self.get_recent_matches()
self.get_fills()
for tree_ui in (self.ui.bid_tree, self.ui.ask_tree):
tree_ui.setColumnCount(2)
tree_ui.setHeaderLabels(['Price', 'Size', 'Value', 'Count', 'Order'])
tree_ui.setItemsExpandable(True)
self.bid_tree = {}
self.ask_tree = {}
self.get_open_orders()
self.ui.refresh_fills.clicked.connect(self.get_fills)
self.ui.refresh_open_orders.clicked.connect(self.get_open_orders)
# self.ui.canvas = MainCanvas(self.ui.canvas, self)
self.timer = QTimer()
self.connect(self.timer, SIGNAL("timeout()"), self.refresh_order_book_ui)
self.timer.start(200)
def refresh_order_book_ui(self):
self.bid_tree = {}
self.ask_tree = {}
for side, price_map, tree_ui, reversal in (('bid', self.order_book.bids.price_map, self.ui.bid_tree, True),
('ask', self.order_book.asks.price_map, self.ui.ask_tree, False)):
prices = sorted(price_map.keys(), reverse=reversal)[:50]
tree_ui.setSortingEnabled(False)
tree_ui.clear()
for price in prices:
for order in price_map[price]:
self.add_limit_order(order, side)
tree_ui.setSortingEnabled(True)
tree_ui.sortItems(0, Qt.DescendingOrder)
self.ui.ask_tree.verticalScrollBar().setValue(self.ui.ask_tree.verticalScrollBar().maximum())
try:
self.ui.spread_label.setText('Spread: {0:,.2f}'.format(self.order_book.asks.price_tree.min_key() -
self.order_book.bids.price_tree.max_key()))
except ValueError:
self.ui.spread_label.setText('Spread: -')
def get_order_book(self):
request = QNetworkRequest()
url = QUrl('https://api.exchange.coinbase.com/products/BTC-USD/book')
url.addQueryItem('level', '3')
request.setUrl(url)
response = self.manager.get(request)
response.finished.connect(self.process_order_book)
def process_order_book(self):
reply = self.sender()
raw = reply.readAll()
response = json.loads(raw.data().decode('utf-8'))
[self.order_book.bids.insert_order(bid[2], Decimal(bid[1]), Decimal(bid[0]), initial=True) for bid in response['bids']]
[self.order_book.asks.insert_order(ask[2], Decimal(ask[1]), Decimal(ask[0]), initial=True) for ask in response['asks']]
self.order_book.level3_sequence = response['sequence']
def process_message(self, message):
try:
self.order_book.process_message(message)
except KeyError:
pass
def add_limit_order(self, limit_order, side):
if side == 'bid':
tree = self.bid_tree
ui_tree = self.ui.bid_tree
red = 0
green = 255
else:
tree = self.ask_tree
ui_tree = self.ui.ask_tree
red = 255
green = 0
if limit_order['price'] > 1000:
return False
price = '{0:,.2f}'.format(limit_order['price'])
size = '{0:,.6f}'.format(limit_order['size'])
value = '{0:,.2f}'.format(limit_order['size'] * limit_order['price'])
order_id = limit_order['order_id']
parent_price = tree.get(price)
if not parent_price:
tree[price] = {}
tree[price][order_id] = {'price': price, 'size': size, 'value': value, 'order_id': order_id}
tree[price]['parent'] = LimitTreeWidgetItem(ui_tree, [price, size, value, '', order_id])
alpha = min(255, int(20.0 * math.sqrt(float(size))) + 20)
for column in range(0, 6):
tree[price]['parent'].setBackgroundColor(column, QColor(red, green, 0, alpha))
else:
tree[price][order_id] = {'price': price, 'size': size, 'value': value, 'order_id': order_id}
ui_tree.takeTopLevelItem((ui_tree.indexOfTopLevelItem(parent_price['parent'])))
del parent_price['parent']
orders = [Decimal(tree[price][order_id]['size'])
for order_id in tree[price]
if 'size' in tree[price][order_id]]
cumulative_size = sum(orders)
cumulative_value = '{0:,.2f}'.format(round(cumulative_size * Decimal(price), 2))
count = len(orders)
parent_price['parent'] = LimitTreeWidgetItem(ui_tree,
[price, str(cumulative_size), cumulative_value, str(count), ''])
for order_id in tree[price]:
if not isinstance(tree[price][order_id], LimitTreeWidgetItem):
alpha = min(255, int(20.0 * math.sqrt(float(tree[price][order_id]['size']))) + 20)
new_item = QTreeWidgetItem(parent_price['parent'],
['',
tree[price][order_id]['size'],
tree[price][order_id]['value'],
'',
tree[price][order_id]['order_id']])
for column in range(0, 6):
new_item.setBackgroundColor(column, QColor(red, green, 0, alpha))
alpha = min(255, int(20.0 * math.sqrt(float(size))) + 20)
for column in range(0, 6):
tree[price]['parent'].setBackgroundColor(column, QColor(red, green, 0, alpha))
def get_recent_matches(self):
request = QNetworkRequest()
request.setUrl(QUrl('https://api.exchange.coinbase.com/products/BTC-USD/trades'))
response = self.manager.get(request)
response.finished.connect(self.process_matches)
def process_matches(self):
reply = self.sender()
raw = reply.readAll()
response = json.loads(raw.data().decode('utf-8'))
for message in reversed(response):
self.add_match(message)
def add_match(self, message):
alpha = min(255, int(20.0 * math.sqrt(float(message['size']))) + 20)
message['value'] = '{0:,.2f}'.format(float(message['price']) * float(message['size']))
message['price'] = '{0:,.2f}'.format(float(message['price']))
message['size'] = '{0:,.4f}'.format(float(message['size']))
try:
message['time'] = message['time'].astimezone(tzlocal()).strftime('%H:%M:%S')
except AttributeError:
message['time'] = parse(message['time']).astimezone(tzlocal()).strftime('%H:%M:%S')
if message['side'] == 'buy':
message['color'] = QColor(255, 0, 0, alpha)
else:
message['color'] = QColor(0, 255, 0, alpha)
self.matches += [message]
headers = ['Price', 'Size', 'Value', 'Time', 'Taker Order ID']
self.ui.matches_table.setColumnCount(len(headers))
self.ui.matches_table.setHorizontalHeaderLabels(headers)
self.ui.matches_table.setSortingEnabled(False)
self.ui.matches_table.insertRow(0)
for column_index, header in enumerate(headers):
if header.replace(' ', '_').lower() in message:
item = QTableWidgetItem(message[header.replace(' ', '_').lower()])
item.setBackground(message['color'])
item.setFlags(Qt.ItemIsEnabled)
item.setTextAlignment(Qt.AlignVCenter | Qt.AlignRight)
self.ui.matches_table.setItem(0, column_index, item)
self.ui.matches_table.horizontalHeader().setResizeMode(QtGui.QHeaderView.ResizeToContents)
def get_fills(self):
request = QNetworkRequest()
url = 'https://api.exchange.coinbase.com/fills'
path_url = '/fills'
timestamp = str(time.time())
message = timestamp + 'GET' + path_url
message = message.encode('utf-8')
hmac_key = base64.b64decode(COINBASE_EXCHANGE_API_SECRET)
signature = hmac.new(hmac_key, message, hashlib.sha256)
signature_b64 = base64.b64encode(signature.digest())
request.setRawHeader('CB-ACCESS-SIGN', signature_b64)
request.setRawHeader('CB-ACCESS-TIMESTAMP', timestamp)
request.setRawHeader('CB-ACCESS-KEY', COINBASE_EXCHANGE_API_KEY)
request.setRawHeader('CB-ACCESS-PASSPHRASE', COINBASE_EXCHANGE_API_PASSPHRASE)
request.setUrl(QUrl(url))
response = self.manager.get(request)
response.finished.connect(self.process_fills)
def process_fills(self):
reply = self.sender()
raw = reply.readAll()
response = json.loads(raw.data().decode('utf-8'))
for fill in response:
self.add_fill(fill)
def add_fill(self, message):
alpha = min(255, int(20.0 * math.sqrt(float(message['size']))) + 20)
message['value'] = '{0:,.2f}'.format(float(message['price']) * float(message['size']))
message['price'] = '{0:,.2f}'.format(float(message['price']))
message['size'] = '{0:,.4f}'.format(float(message['size']))
message['time'] = parse(message['created_at']).astimezone(tzlocal()).strftime('%m-%d %H:%M:%S')
if message['side'] == 'sell':
message['color'] = QColor(255, 0, 0, alpha)
else:
message['color'] = QColor(0, 255, 0, alpha)
self.matches += [message]
headers = ['Price', 'Size', 'Value', 'Time']
self.ui.fills_table.setColumnCount(len(headers))
self.ui.fills_table.setHorizontalHeaderLabels(headers)
self.ui.fills_table.setSortingEnabled(False)
self.ui.fills_table.insertRow(0)
for column_index, header in enumerate(headers):
if header.replace(' ', '_').lower() in message:
item = QTableWidgetItem(message[header.replace(' ', '_').lower()])
item.setBackground(message['color'])
item.setFlags(Qt.ItemIsEnabled)
item.setTextAlignment(Qt.AlignVCenter | Qt.AlignRight)
self.ui.fills_table.setItem(0, column_index, item)
header = self.ui.fills_table.horizontalHeader()
header.setResizeMode(QHeaderView.ResizeToContents)
def get_open_orders(self):
request = QNetworkRequest()
url = 'https://api.exchange.coinbase.com/orders'
path_url = '/orders'
timestamp = str(time.time())
message = timestamp + 'GET' + path_url
message = message.encode('utf-8')
hmac_key = base64.b64decode(COINBASE_EXCHANGE_API_SECRET)
signature = hmac.new(hmac_key, message, hashlib.sha256)
signature_b64 = base64.b64encode(signature.digest())
request.setRawHeader('CB-ACCESS-SIGN', signature_b64)
request.setRawHeader('CB-ACCESS-TIMESTAMP', timestamp)
request.setRawHeader('CB-ACCESS-KEY', COINBASE_EXCHANGE_API_KEY)
request.setRawHeader('CB-ACCESS-PASSPHRASE', COINBASE_EXCHANGE_API_PASSPHRASE)
request.setUrl(QUrl(url))
response = self.manager.get(request)
response.finished.connect(self.process_open_orders)
def process_open_orders(self):
reply = self.sender()
raw = reply.readAll()
response = json.loads(raw.data().decode('utf-8'))
for order in response:
self.add_order(order)
def add_order(self, message):
alpha = min(255, int(20.0 * math.sqrt(float(message['size']))) + 20)
message['value'] = '{0:,.2f}'.format(float(message['price']) * float(message['size']))
message['price'] = '{0:,.2f}'.format(float(message['price']))
message['size'] = '{0:,.4f}'.format(float(message['size']))
message['time'] = parse(message['created_at']).astimezone(tzlocal()).strftime('%m-%d %H:%M:%S')
if message['side'] == 'sell':
message['color'] = QColor(255, 0, 0, alpha)
else:
message['color'] = QColor(0, 255, 0, alpha)
self.matches += [message]
headers = ['Price', 'Size', 'Value', 'Time']
self.ui.open_orders_table.setColumnCount(len(headers))
self.ui.open_orders_table.setHorizontalHeaderLabels(headers)
self.ui.open_orders_table.setSortingEnabled(False)
self.ui.open_orders_table.insertRow(0)
for column_index, header in enumerate(headers):
if header.replace(' ', '_').lower() in message:
item = QTableWidgetItem(message[header.replace(' ', '_').lower()])
item.setBackground(message['color'])
item.setFlags(Qt.ItemIsEnabled)
item.setTextAlignment(Qt.AlignVCenter | Qt.AlignRight)
self.ui.open_orders_table.setItem(0, column_index, item)
header = self.ui.open_orders_table.horizontalHeader()
header.setResizeMode(QHeaderView.ResizeToContents)
def start_websocket(self):
websocket_thread = ListenWebsocket()
self.connect(websocket_thread, websocket_thread.match_signal, self.add_match)
self.connect(websocket_thread, websocket_thread.message_signal, self.process_message)
self.connect(websocket_thread, websocket_thread.sequence_signal, self.update_sequence)
self.connect(websocket_thread, websocket_thread.restart_signal, self.start_websocket)
websocket_thread.start()
def update_sequence(self, sequence):
self.ui.sequence_label.setText('Sequence: {0}'.format(sequence))
class ListenWebsocket(QThread):
def __init__(self):
super(ListenWebsocket, self).__init__(main_app)
self.sequence_signal = SIGNAL('sequence_signal')
self.match_signal = SIGNAL('match_signal')
self.restart_signal = SIGNAL('restart_signal')
self.message_signal = SIGNAL('message_signal')
self.WS = websocket.WebSocketApp('wss://ws-feed.exchange.coinbase.com',
on_message=self.on_message,
on_error=self.on_error,
on_close=self.on_close)
def run(self):
self.WS.on_open = self.on_open
self.WS.run_forever()
def on_open(self, ws):
self.WS.send('{"type": "subscribe", "product_id": "BTC-USD"}')
def on_message(self, ws, message):
if message is None:
print('empty message')
self.emit(self.restart_signal)
self.exit(0)
message = json.loads(message)
self.emit(self.message_signal, message)
self.emit(self.sequence_signal, message['sequence'])
if message['type'] == 'match':
self.emit(self.match_signal, message)
def on_error(self, ws, error):
print('Error: ' + str(error))
self.emit(self.restart_signal)
self.exit(0)
def on_close(self, ws):
return True
class MainCanvas(app.Canvas):
def __init__(self, parent, main_window):
app.Canvas.__init__(self, keys='interactive', parent=parent)
self.match_dates = []
self.match_prices = []
for match in main_window.matches:
self.match_dates += [datetime.strptime(match['time'], '%Y-%m-%dT%H:%M:%S.%fZ')]
self.match_prices += [float(match['price'])]
vertex = """
attribute vec2 a_position;
void main (void)
{
gl_Position = vec4(a_position, 0.0, 1.0);
}
"""
fragment = """
void main()
{
gl_FragColor = vec4(0.0, 0.0, 0.0, 1.0);
}
"""
self.program = gloo.Program(vertex, fragment)
self.program['a_position'] = np.c_[
np.linspace(-1.0, +1.0, 1000),
np.random.uniform(-0.5, +0.5, 1000)].astype(np.float32)
# print(np.c_[np.array(])].astype(np.float32))
self._timer = app.Timer('auto', connect=self.on_timer_event, start=True)
# def calculate_plot(self):
def on_timer_event(self, event):
self.program['a_position'] = np.c_[
np.linspace(-1.0, +1.0, 1000),
np.random.uniform(-0.5, +0.5, 1000)].astype(np.float32)
self.update()
self.show()
def on_resize(self, event):
gloo.set_viewport(0, 0, *event.size)
def on_draw(self, event):
gloo.clear((1, 1, 1, 1))
self.program.draw('line_strip')
def main():
main_window = MainWindow()
main_window.show()
main_window.raise_()
sys.exit(main_app.exec_())
if __name__ == '__main__':
main()