forked from bmoscon/cryptofeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo_binance_authenticated.py
37 lines (24 loc) · 1.39 KB
/
demo_binance_authenticated.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
from cryptofeed import FeedHandler
from cryptofeed.defines import BALANCES, ORDER_INFO, POSITIONS
from cryptofeed.exchanges import Binance, BinanceDelivery, BinanceFutures
async def balance(b, receipt_timestamp):
print(f"Balance update received at {receipt_timestamp}: {b}")
async def position(p, receipt_timestamp):
print(f"Position update received at {receipt_timestamp}: {p}")
async def order_info(oi, receipt_timestamp):
print(f"Order update received at {receipt_timestamp}: {oi}")
def main():
path_to_config = 'config.yaml'
binance = Binance(config=path_to_config, subscription={BALANCES: [], ORDER_INFO: []}, timeout=-1, callbacks={BALANCES: balance, ORDER_INFO: order_info})
binance_delivery = BinanceDelivery(config=path_to_config, subscription={BALANCES: [], POSITIONS: [], ORDER_INFO: []}, timeout=-1, callbacks={BALANCES: balance, POSITIONS: position, ORDER_INFO: order_info})
binance_futures = BinanceFutures(config=path_to_config, subscription={BALANCES: [], POSITIONS: [], ORDER_INFO: []}, timeout=-1, callbacks={BALANCES: balance, POSITIONS: position, ORDER_INFO: order_info})
print(binance._generate_token())
print(binance_delivery._generate_token())
print(binance_futures._generate_token())
f = FeedHandler()
f.add_feed(binance)
f.add_feed(binance_delivery)
f.add_feed(binance_futures)
f.run()
if __name__ == '__main__':
main()