Features
Order
* **POST** /api/v1/orders (Places an order.) ✔️
python3
client.place_order(pair="BTC/ETH", quantity="1.0", side="buy")
* **POST** /api/v1/orders/trigger (Places a trigger order.) ✔️
python3
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.) ✔️
python3
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