[Fix] bug in xtp_gateway direction map

This commit is contained in:
vn.py 2019-08-13 09:14:17 +08:00
parent cf0fc8b66f
commit 85603bb369

View File

@ -87,8 +87,8 @@ DIRECTION_VT2XTP = {
(Direction.SHORT, Offset.CLOSE): XTP_SIDE_REPAY_MARGIN, (Direction.SHORT, Offset.CLOSE): XTP_SIDE_REPAY_MARGIN,
(Direction.SHORT, Offset.OPEN): XTP_SIDE_SHORT_SELL, (Direction.SHORT, Offset.OPEN): XTP_SIDE_SHORT_SELL,
(Direction.LONG, Offset.CLOSE): XTP_SIDE_REPAY_STOCK, (Direction.LONG, Offset.CLOSE): XTP_SIDE_REPAY_STOCK,
(Direction.SHORT, Offset.NONE): XTP_SIDE_BUY, (Direction.SHORT, Offset.NONE): XTP_SIDE_SELL,
(Direction.LONG, Offset.NONE): XTP_SIDE_SELL, (Direction.LONG, Offset.NONE): XTP_SIDE_BUY,
} }
DIRECTION_XTP2VT = {v: k for k, v in DIRECTION_VT2XTP.items()} DIRECTION_XTP2VT = {v: k for k, v in DIRECTION_VT2XTP.items()}