fix bybitgateway price typre error
This commit is contained in:
parent
9e92d989d7
commit
7b6d8f7982
@ -787,7 +787,7 @@ class BybitWebsocketApi(WebsocketClient):
|
||||
orderid=order_id,
|
||||
tradeid=d["exec_id"],
|
||||
direction=DIRECTION_BYBIT2VT[d["side"]],
|
||||
price=d["price"],
|
||||
price=float(d["price"]),
|
||||
volume=d["exec_qty"],
|
||||
time=d["trade_time"],
|
||||
gateway_name=self.gateway_name,
|
||||
@ -822,7 +822,7 @@ class BybitWebsocketApi(WebsocketClient):
|
||||
orderid=local_orderid,
|
||||
type=ORDER_TYPE_BYBIT2VT[d["order_type"]],
|
||||
direction=DIRECTION_BYBIT2VT[d["side"]],
|
||||
price=d["price"],
|
||||
price=float(d["price"]),
|
||||
volume=d["qty"],
|
||||
traded=d["cum_exec_qty"],
|
||||
status=STATUS_BYBIT2VT[d["order_status"]],
|
||||
|
Loading…
Reference in New Issue
Block a user