forked from CyberPunkMetalHead/binance-trading-bot-new-coins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trade_client.py
52 lines (39 loc) · 1.34 KB
/
trade_client.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
from auth.binance_auth import *
client = load_binance_creds('auth/auth.yml')
def get_price(coin):
return client.get_ticker(symbol=coin)['lastPrice']
def convert_volume(coin, quantity, last_price):
"""Converts the volume given in QUANTITY from USDT to the each coin's volume"""
try:
info = client.get_symbol_info(coin)
step_size = info['filters'][2]['stepSize']
lot_size = {coin:step_size.index('1') - 1}
if lot_size[coin] < 0:
lot_size[coin] = 0
except:
print("Ran except block for lot size")
lot_size = {coin:0}
pass
print(lot_size[coin])
# calculate the volume in coin from QUANTITY in USDT (default)
volume = float(quantity / float(last_price))
# define the volume with the correct step size
if coin not in lot_size:
volume = float('{:.1f}'.format(volume))
else:
# if lot size has 0 decimal points, make the volume an integer
if lot_size[coin] == 0:
volume = int(volume)
else:
volume = float('{:.{}f}'.format(volume, lot_size[coin]))
return volume
def create_order(coin, amount, action):
"""
Creates simple buy order and returns the order
"""
return client.create_order(
symbol = coin,
side = action,
type = 'MARKET',
quantity = amount
)