-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.py
38 lines (31 loc) · 980 Bytes
/
index.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
from binance.client import Client
from secrets import api_secret, api_key
client = Client(api_key, api_secret, testnet=True)
# pegar informações da nossa conta
info = client.get_account()
for item in info:
print(item)
# ver os saldos dos ativos que temos na conta
#lista_ativos = info["balances"]
# print(lista_ativos)
# ativos que temos algum saldo
#for ativo in lista_ativos:
# if float(ativo["free"]) > 0:
# print(ativo)
# criar uma ordem dentro da binance
from binance.enums import *
order = client.create_order(
symbol='BNBBRL',
side=SIDE_SELL,
type=ORDER_TYPE_MARKET,
quantity=0.01,
)
print(order)
# visualizar as ordens executadas
print(client.get_all_orders(symbol='BNBBRL'))
print(client.get_my_trades(symbol='BNBBRL'))
# te mostrar as referências de cada par de moedas
print(client.get_symbol_info('BNBBRL'))
# pegar as cotações em tempo real
transacoes = client.get_recent_trades(symbol="BNBBRL", limit=1)
print(transacoes)