forked from enarjord/passivbot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
binance.py
642 lines (608 loc) · 25.4 KB
/
binance.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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
import asyncio
import hashlib
import hmac
import json
import traceback
from time import time
from urllib.parse import urlencode
import aiohttp
import numpy as np
from passivbot import Bot
from procedures import print_, print_async_exception
from pure_funcs import ts_to_date, sort_dict_keys, format_float
class BinanceBot(Bot):
def __init__(self, config: dict):
self.exchange = "binance"
super().__init__(config)
self.session = aiohttp.ClientSession()
self.base_endpoint = ""
self.headers = {"X-MBX-APIKEY": self.key}
async def public_get(self, url: str, params: dict = {}, base_endpoint=None) -> dict:
try:
async with self.session.get(
(self.base_endpoint if base_endpoint is None else base_endpoint) + url,
params=params,
) as response:
result = await response.text()
return json.loads(result)
except Exception as e:
print(f"error with public get {url} {params}")
traceback.print_exc()
return {}
async def private_(self, type_: str, base_endpoint: str, url: str, params: dict = {}) -> dict:
try:
timestamp = int(time() * 1000)
params.update({"timestamp": timestamp, "recvWindow": 5000})
for k in params:
if type(params[k]) == bool:
params[k] = "true" if params[k] else "false"
elif type(params[k]) == float:
params[k] = format_float(params[k])
params = sort_dict_keys(params)
params["signature"] = hmac.new(
self.secret.encode("utf-8"),
urlencode(params).encode("utf-8"),
hashlib.sha256,
).hexdigest()
async with getattr(self.session, type_)(
base_endpoint + url, params=params, headers=self.headers
) as response:
result = await response.text()
return json.loads(result)
except Exception as e:
print(f"error with private {type_} {base_endpoint} {url} {params}")
traceback.print_exc()
return {}
async def private_get(self, url: str, params: dict = {}, base_endpoint: str = None) -> dict:
return await self.private_(
"get",
self.base_endpoint if base_endpoint is None else base_endpoint,
url,
params,
)
async def private_post(self, url: str, params: dict = {}, base_endpoint: str = None) -> dict:
return await self.private_(
"post",
self.base_endpoint if base_endpoint is None else base_endpoint,
url,
params,
)
async def private_put(self, url: str, params: dict = {}, base_endpoint: str = None) -> dict:
return await self.private_(
"put",
self.base_endpoint if base_endpoint is None else base_endpoint,
url,
params,
)
async def private_delete(self, url: str, params: dict = {}, base_endpoint: str = None) -> dict:
return await self.private_(
"delete",
self.base_endpoint if base_endpoint is None else base_endpoint,
url,
params,
)
async def init_market_type(self):
fapi_endpoint = "https://fapi.binance.com"
dapi_endpoint = "https://dapi.binance.com"
self.exchange_info = await self.public_get(
"/fapi/v1/exchangeInfo", base_endpoint=fapi_endpoint
)
if self.symbol in {e["symbol"] for e in self.exchange_info["symbols"]}:
print("linear perpetual")
self.market_type += "_linear_perpetual"
self.inverse = self.config["inverse"] = False
self.base_endpoint = fapi_endpoint
self.endpoints = {
"position": "/fapi/v2/positionRisk",
"balance": "/fapi/v2/balance",
"exchange_info": "/fapi/v1/exchangeInfo",
"leverage_bracket": "/fapi/v1/leverageBracket",
"open_orders": "/fapi/v1/openOrders",
"ticker": "/fapi/v1/ticker/bookTicker",
"fills": "/fapi/v1/userTrades",
"income": "/fapi/v1/income",
"create_order": "/fapi/v1/order",
"cancel_order": "/fapi/v1/order",
"ticks": "/fapi/v1/aggTrades",
"ohlcvs": "/fapi/v1/klines",
"margin_type": "/fapi/v1/marginType",
"leverage": "/fapi/v1/leverage",
"position_side": "/fapi/v1/positionSide/dual",
"websocket": (ws := f"wss://fstream.binance.com/ws/"),
"websocket_market": ws + f"{self.symbol.lower()}@aggTrade",
"websocket_user": ws,
"listen_key": "/fapi/v1/listenKey",
}
else:
self.exchange_info = await self.public_get(
"/dapi/v1/exchangeInfo", base_endpoint=dapi_endpoint
)
if self.symbol in {e["symbol"] for e in self.exchange_info["symbols"]}:
print("inverse coin margined")
self.base_endpoint = dapi_endpoint
self.market_type += "_inverse_coin_margined"
self.inverse = self.config["inverse"] = True
self.endpoints = {
"position": "/dapi/v1/positionRisk",
"balance": "/dapi/v1/balance",
"exchange_info": "/dapi/v1/exchangeInfo",
"leverage_bracket": "/dapi/v1/leverageBracket",
"open_orders": "/dapi/v1/openOrders",
"ticker": "/dapi/v1/ticker/bookTicker",
"fills": "/dapi/v1/userTrades",
"income": "/dapi/v1/income",
"create_order": "/dapi/v1/order",
"cancel_order": "/dapi/v1/order",
"ticks": "/dapi/v1/aggTrades",
"ohlcvs": "/dapi/v1/klines",
"margin_type": "/dapi/v1/marginType",
"leverage": "/dapi/v1/leverage",
"position_side": "/dapi/v1/positionSide/dual",
"websocket": (ws := f"wss://dstream.binance.com/ws/"),
"websocket_market": ws + f"{self.symbol.lower()}@aggTrade",
"websocket_user": ws,
"listen_key": "/dapi/v1/listenKey",
}
else:
raise Exception(f"unknown symbol {self.symbol}")
self.spot_base_endpoint = "https://api.binance.com"
self.endpoints["transfer"] = "/sapi/v1/asset/transfer"
self.endpoints["account"] = "/api/v3/account"
async def _init(self):
await self.init_market_type()
for e in self.exchange_info["symbols"]:
if e["symbol"] == self.symbol:
self.coin = e["baseAsset"]
self.quot = e["quoteAsset"]
self.margin_coin = e["marginAsset"]
self.pair = e["pair"]
if "inverse_coin_margined" in self.market_type:
self.c_mult = self.config["c_mult"] = float(e["contractSize"])
for q in e["filters"]:
if q["filterType"] == "LOT_SIZE":
self.min_qty = self.config["min_qty"] = float(q["minQty"])
elif q["filterType"] == "MARKET_LOT_SIZE":
self.qty_step = self.config["qty_step"] = float(q["stepSize"])
elif q["filterType"] == "PRICE_FILTER":
self.price_step = self.config["price_step"] = float(q["tickSize"])
elif q["filterType"] == "MIN_NOTIONAL":
self.min_cost = self.config["min_cost"] = float(q["notional"])
try:
z = self.min_cost
except AttributeError:
self.min_cost = self.config["min_cost"] = 0.0
break
self.max_leverage = self.config["max_leverage"] = 25
await super()._init()
await self.init_order_book()
await self.update_position()
async def execute_leverage_change(self):
lev = 7 # arbitrary
return await self.private_post(
self.endpoints["leverage"], {"symbol": self.symbol, "leverage": lev}
)
async def init_exchange_config(self) -> bool:
try:
print_(
[
await self.private_post(
self.endpoints["margin_type"],
{"symbol": self.symbol, "marginType": "CROSSED"},
)
]
)
except Exception as e:
print(e)
try:
print_([await self.execute_leverage_change()])
except Exception as e:
print(e)
try:
print_(
[
await self.private_post(
self.endpoints["position_side"], {"dualSidePosition": "true"}
)
]
)
except Exception as e:
if '"code":-4059' not in e.args[0]:
print(e)
print("unable to set hedge mode, aborting")
raise Exception("failed to set hedge mode")
async def init_order_book(self):
ticker = await self.public_get(self.endpoints["ticker"], {"symbol": self.symbol})
if "inverse_coin_margined" in self.market_type:
ticker = ticker[0]
self.ob = [float(ticker["bidPrice"]), float(ticker["askPrice"])]
self.price = np.random.choice(self.ob)
async def fetch_open_orders(self) -> [dict]:
return [
{
"order_id": int(e["orderId"]),
"symbol": e["symbol"],
"price": float(e["price"]),
"qty": float(e["origQty"]),
"type": e["type"].lower(),
"side": e["side"].lower(),
"position_side": e["positionSide"].lower().replace("short", "short"),
"timestamp": int(e["time"]),
}
for e in await self.private_get(self.endpoints["open_orders"], {"symbol": self.symbol})
]
async def fetch_position(self) -> dict:
positions, balance = await asyncio.gather(
self.private_get(
self.endpoints["position"],
(
{"symbol": self.symbol}
if "linear_perpetual" in self.market_type
else {"pair": self.pair}
),
),
self.private_get(self.endpoints["balance"], {}),
)
assert all(
key in positions[0] for key in ["symbol", "positionAmt", "entryPrice"]
), "bogus position fetch"
assert all(
key in balance[0] for key in ["asset", "balance", "crossUnPnl"]
), "bogus balance fetch"
positions = [e for e in positions if e["symbol"] == self.symbol]
position = {
"long": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0},
"short": {"size": 0.0, "price": 0.0, "liquidation_price": 0.0},
"wallet_balance": 0.0,
"equity": 0.0,
}
if positions:
for p in positions:
if p["positionSide"] == "LONG":
position["long"] = {
"size": float(p["positionAmt"]),
"price": float(p["entryPrice"]),
"liquidation_price": float(p["liquidationPrice"]),
}
elif p["positionSide"] == "SHORT":
position["short"] = {
"size": float(p["positionAmt"]),
"price": float(p["entryPrice"]),
"liquidation_price": float(p["liquidationPrice"]),
}
for e in balance:
if e["asset"] == (self.quot if "linear_perpetual" in self.market_type else self.coin):
position["wallet_balance"] = float(e["balance"])
position["equity"] = position["wallet_balance"] + float(e["crossUnPnl"])
break
return position
async def execute_order(self, order: dict) -> dict:
o = None
try:
params = {
"symbol": self.symbol,
"side": order["side"].upper(),
"positionSide": order["position_side"].replace("short", "short").upper(),
"type": order["type"].upper(),
"quantity": str(order["qty"]),
}
if params["type"] == "LIMIT":
params["timeInForce"] = "GTX"
params["price"] = order["price"]
if "custom_id" in order:
params[
"newClientOrderId"
] = f"{order['custom_id']}_{str(int(time() * 1000))[8:]}_{int(np.random.random() * 1000)}"
o = await self.private_post(self.endpoints["create_order"], params)
return {
"symbol": self.symbol,
"side": o["side"].lower(),
"position_side": o["positionSide"].lower().replace("short", "short"),
"type": o["type"].lower(),
"qty": float(o["origQty"]),
"order_id": int(o["orderId"]),
"price": float(o["price"]),
}
except Exception as e:
print(f"error executing order {order} {e}")
print_async_exception(o)
traceback.print_exc()
return {}
async def execute_cancellation(self, order: dict) -> dict:
cancellation = None
try:
cancellation = await self.private_delete(
self.endpoints["cancel_order"],
{"symbol": self.symbol, "orderId": order["order_id"]},
)
return {
"symbol": self.symbol,
"side": cancellation["side"].lower(),
"order_id": int(cancellation["orderId"]),
"position_side": cancellation["positionSide"].lower().replace("short", "short"),
"qty": float(cancellation["origQty"]),
"price": float(cancellation["price"]),
}
except Exception as e:
print(f"error cancelling order {order} {e}")
print_async_exception(cancellation)
traceback.print_exc()
self.ts_released["force_update"] = 0.0
return {}
async def fetch_fills(
self,
symbol=None,
limit: int = 1000,
from_id: int = None,
start_time: int = None,
end_time: int = None,
):
params = {
"symbol": self.symbol if symbol is None else symbol,
"limit": min(100, limit) if self.inverse else limit,
}
if from_id is not None:
params["fromId"] = max(0, from_id)
if start_time is not None:
params["startTime"] = int(start_time)
if end_time is not None:
params["endTime"] = int(min(end_time, start_time + 1000 * 60 * 60 * 24 * 6.99))
try:
fetched = await self.private_get(self.endpoints["fills"], params)
fills = [
{
"symbol": x["symbol"],
"id": int(x["id"]),
"order_id": int(x["orderId"]),
"side": x["side"].lower(),
"price": float(x["price"]),
"qty": float(x["qty"]),
"realized_pnl": float(x["realizedPnl"]),
"cost": float(x["baseQty"]) if self.inverse else float(x["quoteQty"]),
"fee_paid": float(x["commission"]),
"fee_token": x["commissionAsset"],
"timestamp": int(x["time"]),
"position_side": x["positionSide"].lower().replace("short", "short"),
"is_maker": x["maker"],
}
for x in fetched
]
except Exception as e:
print("error fetching fills", e)
traceback.print_exc()
return []
return fills
async def get_all_income(
self,
symbol: str = None,
start_time: int = None,
income_type: str = "realized_pnl",
end_time: int = None,
):
income = []
while True:
fetched = await self.fetch_income(
symbol=symbol,
start_time=start_time,
income_type=income_type,
limit=1000,
)
print_(["fetched income", ts_to_date(fetched[0]["timestamp"])])
if fetched == income[-len(fetched) :]:
break
income += fetched
if len(fetched) < 1000:
break
start_time = income[-1]["timestamp"]
income_d = {e["transaction_id"]: e for e in income}
return sorted(income_d.values(), key=lambda x: x["timestamp"])
async def fetch_income(
self,
symbol: str = None,
income_type: str = None,
limit: int = 1000,
start_time: int = None,
end_time: int = None,
):
params = {"limit": limit}
if symbol is not None:
params["symbol"] = symbol
if start_time is not None:
params["startTime"] = int(start_time)
if end_time is not None:
params["endTime"] = int(end_time)
if income_type is not None:
params["incomeType"] = income_type.upper()
try:
fetched = await self.private_get(self.endpoints["income"], params)
return [
{
"symbol": e["symbol"],
"income_type": e["incomeType"].lower(),
"income": float(e["income"]),
"token": e["asset"],
"timestamp": float(e["time"]),
"info": e["info"],
"transaction_id": float(e["tranId"]),
"trade_id": float(e["tradeId"]),
}
for e in fetched
]
except Exception as e:
print("error fetching income: ", e)
traceback.print_exc()
return []
return income
async def fetch_account(self):
try:
return await self.private_get(
self.endpoints["account"], base_endpoint=self.spot_base_endpoint
)
except Exception as e:
print("error fetching account: ", e)
return {"balances": []}
async def fetch_ticks(
self,
from_id: int = None,
start_time: int = None,
end_time: int = None,
do_print: bool = True,
):
params = {"symbol": self.symbol, "limit": 1000}
if from_id is not None:
params["fromId"] = max(0, from_id)
if start_time is not None:
params["startTime"] = int(start_time)
if end_time is not None:
params["endTime"] = int(end_time)
try:
fetched = await self.public_get(self.endpoints["ticks"], params)
except Exception as e:
print("error fetching ticks a", e)
traceback.print_exc()
return []
try:
ticks = [
{
"trade_id": int(t["a"]),
"price": float(t["p"]),
"qty": float(t["q"]),
"timestamp": int(t["T"]),
"is_buyer_maker": t["m"],
}
for t in fetched
]
if do_print:
print_(
[
"fetched ticks",
self.symbol,
ticks[0]["trade_id"],
ts_to_date(float(ticks[0]["timestamp"]) / 1000),
]
)
except Exception as e:
print("error fetching ticks b", e, fetched)
ticks = []
if do_print:
print_(["fetched no new ticks", self.symbol])
return ticks
async def fetch_ticks_time(self, start_time: int, end_time: int = None, do_print: bool = True):
return await self.fetch_ticks(start_time=start_time, end_time=end_time, do_print=do_print)
async def fetch_ohlcvs(
self, symbol: str = None, start_time: int = None, interval="1m", limit=1500
):
# m -> minutes; h -> hours; d -> days; w -> weeks; M -> months
interval_map = {
"1m": 1,
"3m": 3,
"5m": 5,
"15m": 15,
"30m": 30,
"1h": 60,
"2h": 120,
"4h": 240,
"6h": 360,
"12h": 720,
"1d": 60 * 60 * 24,
"1w": 60 * 60 * 24 * 7,
"1M": 60 * 60 * 24 * 30,
}
assert interval in interval_map
params = {
"symbol": self.symbol if symbol is None else symbol,
"interval": interval,
"limit": limit,
}
if start_time is not None:
params["startTime"] = int(start_time)
params["endTime"] = params["startTime"] + interval_map[interval] * 60 * 1000 * limit
try:
fetched = await self.public_get(self.endpoints["ohlcvs"], params)
return [
{
**{"timestamp": int(e[0])},
**{
k: float(e[i + 1])
for i, k in enumerate(["open", "high", "low", "close", "volume"])
},
}
for e in fetched
]
except Exception as e:
print("error fetching ohlcvs", fetched, e)
traceback.print_exc()
async def transfer(self, type_: str, amount: float, asset: str = "USDT"):
params = {"type": type_.upper(), "amount": amount, "asset": asset}
return await self.private_post(
self.endpoints["transfer"], params, base_endpoint=self.spot_base_endpoint
)
def standardize_market_stream_event(self, data: dict) -> [dict]:
try:
return [
{
"timestamp": int(data["T"]),
"price": float(data["p"]),
"qty": float(data["q"]),
"is_buyer_maker": data["m"],
}
]
except Exception as e:
print("error in websocket tick", e, data)
return []
async def beat_heart_user_stream(self) -> None:
while True:
await asyncio.sleep(60 + np.random.randint(60 * 9, 60 * 14))
await self.init_user_stream()
async def init_user_stream(self) -> None:
try:
response = await self.private_post(self.endpoints["listen_key"])
self.listen_key = response["listenKey"]
self.endpoints["websocket_user"] = self.endpoints["websocket"] + self.listen_key
except Exception as e:
traceback.print_exc()
print_(["error fetching listen key", e])
def standardize_user_stream_event(self, event: dict) -> dict:
standardized = {}
if "e" in event:
if event["e"] == "ACCOUNT_UPDATE":
if "a" in event and "B" in event["a"]:
for x in event["a"]["B"]:
if x["a"] == self.margin_coin:
standardized["wallet_balance"] = float(x["cw"])
if event["a"]["m"] == "ORDER":
for x in event["a"]["P"]:
if x["s"] != self.symbol:
standardized["other_symbol"] = x["s"]
standardized["other_type"] = "account_update"
continue
if x["ps"] == "LONG":
standardized["psize_long"] = float(x["pa"])
standardized["pprice_long"] = float(x["ep"])
elif x["ps"] == "SHORT":
standardized["psize_short"] = float(x["pa"])
standardized["pprice_short"] = float(x["ep"])
elif event["e"] == "ORDER_TRADE_UPDATE":
if event["o"]["s"] == self.symbol:
if event["o"]["X"] == "NEW":
standardized["new_open_order"] = {
"order_id": int(event["o"]["i"]),
"symbol": event["o"]["s"],
"price": float(event["o"]["p"]),
"qty": float(event["o"]["q"]),
"type": event["o"]["o"].lower(),
"side": event["o"]["S"].lower(),
"position_side": event["o"]["ps"].lower().replace("short", "short"),
"timestamp": int(event["o"]["T"]),
}
elif event["o"]["X"] in ["CANCELED", "EXPIRED"]:
standardized["deleted_order_id"] = int(event["o"]["i"])
elif event["o"]["X"] == "FILLED":
standardized["deleted_order_id"] = int(event["o"]["i"])
standardized["filled"] = True
elif event["o"]["X"] == "PARTIALLY_FILLED":
standardized["deleted_order_id"] = int(event["o"]["i"])
standardized["partially_filled"] = True
else:
standardized["other_symbol"] = event["o"]["s"]
standardized["other_type"] = "order_update"
return standardized