[Mod] add average price for BitMEX position data

This commit is contained in:
vn.py 2019-11-07 09:50:10 +08:00
parent e1eedc063b
commit fde4c74ca5
2 changed files with 21 additions and 13 deletions

View File

@ -533,6 +533,7 @@ class BitmexWebsocketApi(WebsocketClient):
self.ticks = {}
self.accounts = {}
self.orders = {}
self.positions = {}
self.trades = set()
def connect(
@ -735,20 +736,27 @@ class BitmexWebsocketApi(WebsocketClient):
def on_position(self, d):
""""""
symbol = d["symbol"]
position = self.positions.get(symbol, None)
if not position:
position = PositionData(
symbol=d["symbol"],
exchange=Exchange.BITMEX,
direction=Direction.NET,
volume=d.get("currentQty", 0),
price=d.get("avgEntryPrice", 0),
gateway_name=self.gateway_name,
)
self.positions[symbol] = position
# avgEntryPrice may be None instead of 0 sometimes
if position.price is None:
position.price = 0
volume = d.get("currentQty", None)
if volume is not None:
position.volume = volume
self.gateway.on_position(position)
price = d.get("avgEntryPrice", None)
if price is not None:
position.price = price
self.gateway.on_position(copy(position))
def on_account(self, d):
""""""

View File

@ -463,7 +463,7 @@ class PositionMonitor(BaseMonitor):
"volume": {"display": "数量", "cell": BaseCell, "update": True},
"yd_volume": {"display": "昨仓", "cell": BaseCell, "update": True},
"frozen": {"display": "冻结", "cell": BaseCell, "update": True},
"price": {"display": "均价", "cell": BaseCell, "update": False},
"price": {"display": "均价", "cell": BaseCell, "update": True},
"pnl": {"display": "盈亏", "cell": PnlCell, "update": True},
"gateway_name": {"display": "接口", "cell": BaseCell, "update": False},
}