forked from bmoscon/cryptofeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo_binance_delivery.py
81 lines (64 loc) · 3.18 KB
/
demo_binance_delivery.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
'''
Copyright (C) 2018-2025 Bryant Moscon - [email protected]
Please see the LICENSE file for the terms and conditions
associated with this software.
'''
from datetime import datetime
from decimal import Decimal
from cryptofeed import FeedHandler
from cryptofeed.defines import GOOD_TIL_CANCELED, L2_BOOK, LIMIT, SELL, TICKER, TRADES
from cryptofeed.exchanges import Binance, BinanceDelivery, BinanceFutures
info = BinanceDelivery.info()
async def abook(book, receipt_timestamp):
print(f'BOOK lag: {receipt_timestamp - book.timestamp} Timestamp: {datetime.fromtimestamp(book.timestamp)} Receipt Timestamp: {datetime.fromtimestamp(receipt_timestamp)}')
async def ticker(t, receipt_timestamp):
if t.timestamp is not None:
assert isinstance(t.timestamp, float)
assert isinstance(t.exchange, str)
assert isinstance(t.bid, Decimal)
assert isinstance(t.ask, Decimal)
print(f'Ticker received at {receipt_timestamp}: {t}')
async def trades(t, receipt_timestamp):
assert isinstance(t.timestamp, float)
assert isinstance(t.side, str)
assert isinstance(t.amount, Decimal)
assert isinstance(t.price, Decimal)
assert isinstance(t.exchange, str)
print(f"Trade received at {receipt_timestamp}: {t}")
def main():
path_to_config = 'config.yaml'
binance = Binance(config=path_to_config)
print(binance.balances_sync())
print(binance.orders_sync())
order = binance.place_order_sync('BTC-USDT', SELL, LIMIT, 0.002, 80000, time_in_force=GOOD_TIL_CANCELED, test=False)
print(binance.orders_sync(symbol='BTC-USDT'))
print(order)
print(binance.cancel_order_sync(order['orderId'], symbol='BTC-USDT'))
print(binance.orders_sync(symbol='BTC-USDT'))
binance_futures = BinanceFutures(config=path_to_config)
print(binance_futures.balances_sync())
print(binance_futures.orders_sync())
print(binance_futures.positions_sync())
order = binance_futures.place_order_sync('ETH-USDT-PERP', SELL, LIMIT, 20, 5000, time_in_force=GOOD_TIL_CANCELED)
print(binance_futures.orders_sync(symbol='BTC-USDT-PERP'))
print(binance_futures.orders_sync(symbol='ETH-USDT-PERP'))
print(order)
print(binance_futures.cancel_order_sync(order['orderId'], symbol='ETH-USDT-PERP'))
print(binance_futures.orders_sync(symbol='ETH-USDT-PERP'))
binance_delivery = BinanceDelivery(config=path_to_config)
print(binance_delivery.balances_sync())
print(binance_delivery.orders_sync())
print(binance_delivery.positions_sync())
order = binance_delivery.place_order_sync('ETH-USD-PERP', SELL, LIMIT, 0.05, 5000, time_in_force=GOOD_TIL_CANCELED, test=False)
print(binance_delivery.orders_sync(symbol='BTC-USDT-PERP'))
print(binance_delivery.orders_sync(symbol='ETH-USDT-PERP'))
print(order)
print(binance_delivery.cancel_order_sync(order['orderId'], symbol='ETH-USDT-PERP'))
print(binance_delivery.orders_sync(symbol='ETH-USDT-PERP'))
f = FeedHandler()
f.add_feed(BinanceDelivery(max_depth=3, symbols=[info['symbols'][-1]],
channels=[L2_BOOK, TRADES, TICKER],
callbacks={L2_BOOK: abook, TRADES: trades, TICKER: ticker}))
f.run()
if __name__ == '__main__':
main()