-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from itsdeka/ob
added full_orderbook.py example
- Loading branch information
Showing
4 changed files
with
85 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import os | ||
import sys | ||
import time | ||
from collections import OrderedDict | ||
sys.path.append('../../../') | ||
|
||
from bfxapi import Client | ||
|
||
bfx = Client( | ||
manageOrderBooks=True | ||
) | ||
|
||
class OrderBook: | ||
def __init__(self, snapshot): | ||
self.bids = OrderedDict() | ||
self.asks = OrderedDict() | ||
self.load(snapshot) | ||
|
||
def load(self, snapshot): | ||
for record in snapshot: | ||
if record[2] >= 0: | ||
self.bids[record[0]] = { | ||
'count': record[1], | ||
'amount': record[2] | ||
} | ||
else: | ||
self.asks[record[0]] = { | ||
'count': record[1], | ||
'amount': record[2] | ||
} | ||
|
||
def update(self, record): | ||
# count is 0 | ||
if record[1] == 0: | ||
if record[2] == 1: | ||
# remove from bids | ||
del self.bids[record[0]] | ||
elif record[2] == -1: | ||
# remove from asks | ||
del self.asks[record[0]] | ||
elif record[1] > 0: | ||
if record[2] > 0: | ||
# update bids | ||
if record[0] not in self.bids: | ||
self.bids[record[0]] = {} | ||
self.bids[record[0]]['count'] = record[1] | ||
self.bids[record[0]]['amount'] = record[2] | ||
elif record[2] < 0: | ||
# update asks | ||
if record[0] not in self.asks: | ||
self.asks[record[0]] = {} | ||
self.asks[record[0]]['count'] = record[1] | ||
self.asks[record[0]]['amount'] = record[2] | ||
|
||
obs = {} | ||
|
||
@bfx.ws.on('error') | ||
def log_error(err): | ||
print ("Error: {}".format(err)) | ||
|
||
@bfx.ws.on('order_book_update') | ||
def log_update(data): | ||
obs[data['symbol']].update(data['data']) | ||
|
||
@bfx.ws.on('order_book_snapshot') | ||
def log_snapshot(data): | ||
obs[data['symbol']] = OrderBook(data['data']) | ||
|
||
async def start(): | ||
await bfx.ws.subscribe('book', 'tBTCUSD') | ||
|
||
bfx.ws.on('connected', start) | ||
bfx.ws.run() | ||
|
||
for n in range(0, 10): | ||
time.sleep(2) | ||
for key in obs: | ||
print(f"Printing {key} orderbook...") | ||
print(f"{obs[key].bids}\n") | ||
print(f"{obs[key].asks}\n") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
This module contains the current version of the bfxapi lib | ||
""" | ||
|
||
__version__ = '1.2.0' | ||
__version__ = '1.2.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters