Skip to main content

Set Market Maker Protection Config (TRADE)

API Description#

Set config for MMP. Market Maker Protection(MMP) is a set of protection mechanism for option market maker, this mechanism is able to prevent mass trading in short period time. Once market maker's account branches the threshold, the Market Maker Protection will be triggered. When Market Maker Protection triggers, all the current MMP orders will be canceled, new MMP orders will be rejected. Market maker can use this time to reevaluate market and modify order price.

HTTP Request#

POST /eapi/v1/mmpSet

Request Weight#

1

Request Parameters#

NameTypeMandatoryDescription
underlyingSTRINGTRUEunderlying, e.g BTCUSDT
windowTimeInMillisecondsLONGTRUEMMP Interval in milliseconds; Range (0,5000]
frozenTimeInMillisecondsLONGTRUEMMP frozen time in milliseconds, if set to 0 manual reset is required
qtyLimitDECIMALTRUEquantity limit
deltaLimitDECIMALTRUEnet delta limit
recvWindowLONGNO
timestampLONGYES

Response Example#

{    "underlyingId": 2,    "underlying": "BTCUSDT",    "windowTimeInMilliseconds": 3000,    "frozenTimeInMilliseconds": 300000,    "qtyLimit": "2",    "deltaLimit": "2.3",    "lastTriggerTime": 0
}