JEX 全球领先的期权交易所
有群友问到如何通过bitmex api实现止盈止损功能,实际上止盈止损在api里面属于条件触发单的一种,因此如果弄懂了如何通过api挂条件触发单,即可以实现止损止盈功能,下面以买入止损为例,详细看一下当做空时,当突破时如何止损:
请求地址:
https://www.bitmex.com/api/v1/order
请求方式:
Post
请求数据:
"symbol=" & symbol & "&price=" & price & "&quantity=" & qty & "&side=Buy&ordType=StopLimit&execInst=LastPrice" & "&stopPx=" & triggerprice
其中:
symbol 合约品种
price 下单价格
quantity 下单数量
side 多空方向,这里值为buy
ordType 下单类型,这里stoplimit为限价止损
execInst 触发类型,这里lastprice为最后成交价
stopPx 触发价格,即当最后成交价触及该价格会触发该买入止损订单