Skip to content

v1.0.1

Compare
Choose a tag to compare
@guilyx guilyx released this 05 Oct 13:48
· 31 commits to master since this release
8478e0e

[1.0.1] - 05-10-2022

Features

Order

  • POST /api/v1/orders (Places an order.) ✔️
client.place_order(pair="BTC/ETH", quantity="1.0", side="buy")
  • POST /api/v1/orders/trigger (Places a trigger order.) ✔️
client.place_trigger_order(pair="BTC/ETH", trigger_type="takeProfit", side="buy", trigger_price="15.0", amount="2.0")
  • POST /api/v1/orders/advanced (Places an advanced order.) ✔️
client.place_advanced_order(pair="BTC/USDT", side="buy", stop_loss_price="18000", tak_profit_price="22000", amount="0.001")

Changelog

Added

  • Example for placing order
  • More Unit Tests

Changed

  • POST Requests are functional
  • Sleep in test to avoid blowing up the rate limit
  • Improve error management and exceptions