Last updated 4 months ago
Returns the current market maker protection status for the desk.
Resets the market maker protection flag allowing desk to trade.
const response = await fetch('/v1/ob/mmp/status/', { method: 'GET', headers: { "Authorization": "Bearer Bearer" }, }); const data = await response.json();
{ "rate_limit_hit": false }
const response = await fetch('/v1/ob/mmp/status/', { method: 'PATCH', headers: { "Authorization": "Bearer Bearer" }, }); const data = await response.json();