Skip to content

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

License

Notifications You must be signed in to change notification settings

hugodemenez/Python_Brokers_API

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


Built by Hugo Demenez

Example

import Python_Brokers_API

broker=Python_Brokers_API.binance()

#Public data
print(
    broker.price(symbol="BTCEUR"),
    broker.get_klines_data(symbol="BTCEUR",interval="minute"),
    broker.get_24h_stats("BTCEUR"),
    )

#To create .key file
print(
  broker.create_key_file()
)

#To connect api
print(
    broker.connect_key("binance.key")
)

#To check the connection True = Ok, False = Error
print(
    broker.test_order()
)

#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),
)

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages