下计划委托单
危险
- 当服务器压力水平过高时,下单会触发 3008 异常报错。
- 当触发 3008 报错时,撤单请求仍然享有高优先级,即服务器会优先处理撤单请求。
- 计划单没有触发前不会冻结余额。
HTTP 请求
POST /futures/stop-order
请求参数
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
market | true | string | 市场名称 |
market_type | true | string | 市场类型。 注意:在现货相关功能中,只可使用 SPOT 或 MARGIN 在合约相关功能中,只可使用 FUTURES |
side | true | string | 订单方向 |
type | true | string | 订单类型 |
amount | true | string | 委托数量 |
price | false | string | 委托价格 |
trigger_price_type | true | string | 触达价格类型,latest_price 或 mark_price 或 index_price |
trigger_price | true | string | 计划委托触发价格 |
client_id | false | string | 客户自定义 ID |
is_hide | false | bool | 是否隐藏委托,默认为: false |
stp_mode | false | string | 自成交保护模式。 ct: 立即取消剩余的Taker单 cm: 立即取消剩余的Maker单(剩下的taker单不受影响,若设置为限价吃单,剩余没有成交的taker单以限价继续挂单) both: 立即取消剩余的Taker和Maker单 注意:在集合竞价期间挂单stp_mode不生效 |
请求响应
参数名 | 类型 | 说明 |
---|---|---|
stop_id | int | 计划单 ID |
请求示例
{
"market": "CETUSDT",
"market_type": "FUTURES",
"side": "buy",
"type": "limit",
"amount": "10000",
"price": "1",
"trigger_price_type": "mark_price",
"trigger_price": "1.1",
"client_id": "user1",
"is_hide": true
}
响应示例
{
"code": 0,
"data": {
"stop_id": 287330817
},
"message": "OK"
}