A package to make requests to brokers like binance,kraken
Project description
Python_Brokers_API
This repository hosts the brain api used for my trading algorithms.
Simple functions to use crypto brokers with python 3
Built by
Hugo Demenez
Example
import Python_Brokers_API
broker=Python_Brokers_API.binance()
#Public data
print(
broker.price(),
broker.get_klines_data(),
broker.get_24h_stats(),
)
#To connect api
print(
broker.connect_key("binance.key")
)
#Private data
print(
broker.account_information(),
broker.get_open_orders(),
broker.get_balances(),
broker.create_market_order(symbol='BTCUSD',side='buy',quantity=1),
broker.create_limit_order(symbol='BTCUSD',side='buy',quantity=1,price=10000),
broker.create_take_profit_order(symbol='BTCUSD',side='buy',quantity=1,profitPrice=100000),
broker.create_stop_loss_order(symbol='BTCUSD',side='buy',quantity=1,stopPrice=1000),
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file Python_Brokers_API-0.8.tar.gz.
File metadata
- Download URL: Python_Brokers_API-0.8.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a535892f77990e237c38eb9fe5f61134c30a2927405e1f89b55f84f6a59de94d
|
|
| MD5 |
a8e5ae43bb9cb221691c0e55da1f7d7c
|
|
| BLAKE2b-256 |
f0ab2e6c47fadd2158df23094c3c53d8fc53e74fb8fddc06e8ea8758c79ad0c4
|