最大可买可卖
GET/api/v1.0/sim-trade/{acc_id}/max-buy-sell查询标的最大可买/可卖数量。
请求参数
| 参数 | 类型 | 位置 | 必填 | 说明 |
|---|---|---|---|---|
acc_id | string | path | 是 | 业务账户 ID |
symbol | string | query | 是 | 证券代码 |
order_type | int | query | 是 | 1=限价 3=市价 |
price | string | query | 否 | 价格(限价必填) |
order_id | string | query | 否 | 改单时传原单 ID |
请求示例
bash
curl -s "https://webapi.moomoo.com/api/v1.0/sim-trade/80303779/max-buy-sell?symbol=00700&order_type=1&price=400" | jq响应字段
| 字段 | 类型 | 说明 |
|---|---|---|
max_cash_buy_qty_round_lot | string | 现金可买(整手) |
max_margin_buy_qty_round_lot | string/null | 融资可买(整手) |
max_sell_qty_round_lot | string | 可卖(整手) |
max_sell_short_qty | string | 可卖空 |
max_buy_back_qty | string | 需补回 |
required_im_long | string/null | 期货多开保证金 |
required_im_short | string/null | 期货空开保证金 |
响应示例
json
{
"ret_code": 0,
"data": {
"max_cash_buy_qty_round_lot": "2300",
"max_margin_buy_qty_round_lot": null,
"max_sell_qty_round_lot": "0",
"max_sell_short_qty": "0",
"max_buy_back_qty": "0",
"required_im_long": null,
"required_im_short": null
}
}