Release v1.1.0
almost 2 years ago by Ken
RELEASE DATE: 17-03-2023
Released improvements for trading as a maker on the exchange.
REST API Changelog
POST /orders
- Orders can only be submitted with the use of an API key now.
- New
post_only
field, which guarantees that a submitted order would be a maker order, or be rejected if not.
GET /mmp
- New
triggered
field, which istrue
when the account goes under MMP. - New
amount_change
field returns the amount of contracts filled under the current interval. - New
delta_limit
field for the delta limit MMP setting. - Renamed
amount
toamount_limit
for clarity.
POST /mmp
- Renamed
amount
toamount_limit
. - New
delta_limit
field which allows makers to set the maximum change in absolute delta in an interval. It is an unsigned float.
Other MMP changes
- MMP (either with
amount_limit
ordelta_limit
) is only triggered by orders created with thepost_only
setting.
POST /api-key
- API key creation can be done programmatically now.
- You can whitelist a list of IP addresses (
ip_addresses
) that can use the API key. - You can assign
read_only
permission to an API key.
DELETE /api-key
- API keys can be deleted with the use of another API key.
Websocket API Changelog
SUBSCRIBE Positions
- Renamed
greeks
object tooption
- Removed
gamma
from theoption
object - Added
strike
to theoption
object - Added
option_type
to theoption
object - Added
expiry
to theoption
object - Added
asset
to theposition
object - Added
side
to theposition
object - Added
avg_entry_price
to theposition
object - Added
unrealized_pnl
to theposition
object - Added
maintenance_margin
to theposition
object