Other Limits
Subaccounts have a limited number of stateful open orders at any one time determined by the net collateral of the subaccount.
These limits are subject to governance. The latest limits can be queried via the https://<REST_NODE_ENDPOINT>/dydxprotocol/clob/equity_tier
endpoint.
Here is an example response:
{
"equity_tier_limit_config": {
"stateful_order_equity_tiers": [
{
"usd_tnc_required": "0",
"limit": 0
},
{
"usd_tnc_required": "20000000",
"limit": 4
},
{
"usd_tnc_required": "100000000",
"limit": 8
},
{
"usd_tnc_required": "1000000000",
"limit": 10
},
{
"usd_tnc_required": "10000000000",
"limit": 100
},
{
"usd_tnc_required": "100000000000",
"limit": 200
}
]
}
}
Read as:
Net Collateral | Long-term or Conditional orders |
---|---|
< $20 | 0 |
>= $20 and < $100 | 4 |
>= $100 and < $1,000 | 8 |
>= $1,000 and < $10,000 | 10 |
>= $10,000 and < $100,000 | 100 |
>= $100,000 | 200 |
For example up to 10 open bids across all markets for a subaccount with a net collateral of $2,000.
Note:
- Short term orders, including limit
Immediate-or-Cancel
,Fill-or-Kill
, and market orders on the frontend do not have this limitation. - Only the
stateful_order_equity_tiers
field is in effect -- short term order equity limits under theshort_term_order_equity_tiers
key are no longer in effect.