Releases: guilyx/python-nexo
Releases · guilyx/python-nexo
v1.0.3
v1.0.1
[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
v1.0.0
Features
Account
- GET /api/v1/accountSummary (Retrieves account balances)
client.get_account_balances()
Pairs
- GET /api/v1/pairs (Gets a list of all pairs, min and max amounts.)
client.get_pairs()
Quote
- GET /api/v1/pairs (Gets a price quote.)
client.get_price_quote(pair="BTC/ETH", amount="1.0", side="buy")