Set mmp Config
Endpoint
private/set_mmp_config
Parameters(params)
| Parameter | Type | Required | Description |
|---|---|---|---|
| currency | string | true | Base coin, uppercase only |
| window | string | true | Time window (ms) |
| frozenPeriod | string | true | Frozen period (ms). "0" means the trade will remain frozen until manually reset |
| quantityLimit | string | true | Trade quantity limit (positive and up to 2 decimal places) |
| deltaLimit | string | true | Delta limit (positive and up to 2 decimal places) |
Request Example
{
"rid": 50002,
"method": "private/set_mmp_config",
"params": {
"currency": "BTC",
"window": "5000",
"frozenPeriod": "300",
"quantityLimit": "100.0",
"deltaLimit": "50.0"
}
}
Response(result)
This endpoint returns an empty result object upon successful configuration.
Response Example
{
"rid": 50002,
"result": {
}
}