Merge pull request #1123 from nanoric/bitmex_market_price

[Fix] 修正市价单无法下单的问题
This commit is contained in:
vn.py 2018-09-21 09:59:07 +08:00 committed by GitHub
commit e3eaadf263
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -196,6 +196,11 @@ class RestApi(BitmexRestApi):
'orderQty': orderReq.volume,
'clOrdID': str(orderId)
}
# 市价单不能有price字段
if orderReq.priceType == PRICETYPE_MARKETPRICE:
req.pop('price')
self.addReq('POST', '/order', self.onSendOrder, postdict=req)
return vtOrderID