Skip to content

Repository files navigation

Python_Brokers_API

This repository hosts the brain api used for my trading algorithms.

Simple functions to use crypto brokers with python 3

license

Built by Hugo Demenez

Example

importPython_Brokers_APIbroker=Python_Brokers_API.binance()
#Public dataprint(
broker.price(symbol="BTCEUR"),
broker.get_klines_data(symbol="BTCEUR",interval="minute"),
broker.get_24h_stats("BTCEUR"),
)
#To create .key fileprint(
broker.create_key_file()
)
#To connect apiprint(
broker.connect_key("binance.key")
)
#To check the connection True = Ok, False = Errorprint(
broker.test_order()
)
#Private dataprint(
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),
)

About

This repository hosts the brain api used for my trading algorithms.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages