From f3cb22e6edf04298fb58be7ec5d39857ce59503b Mon Sep 17 00:00:00 2001 From: "vn.py" Date: Wed, 6 Dec 2017 21:50:02 +0800 Subject: [PATCH] =?UTF-8?q?[Fix]=E4=BF=AE=E5=A4=8D=E6=9C=9F=E6=9D=83?= =?UTF-8?q?=E6=89=8B=E5=8A=A8=E4=BA=A4=E6=98=93=E7=BB=84=E4=BB=B6=E7=9A=84?= =?UTF-8?q?=E4=BA=8B=E4=BB=B6=E8=AE=A2=E9=98=85bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vnpy/trader/app/optionMaster/uiOmManualTrader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vnpy/trader/app/optionMaster/uiOmManualTrader.py b/vnpy/trader/app/optionMaster/uiOmManualTrader.py index 2b9c96cb..1652be06 100644 --- a/vnpy/trader/app/optionMaster/uiOmManualTrader.py +++ b/vnpy/trader/app/optionMaster/uiOmManualTrader.py @@ -201,7 +201,7 @@ class ChainMonitor(QtWidgets.QTableWidget): for underlying in portfolio.underlyingDict.values(): self.eventEngine.register(EVENT_TICK + underlying.vtSymbol, self.signalTick.emit) - self.eventEngine.register(EVENT_TRADE + underlying.vtSymbol, self.signalTick.emit) + self.eventEngine.register(EVENT_TRADE + underlying.vtSymbol, self.signalTrade.emit) for chain in portfolio.chainDict.values(): for option in chain.optionDict.values():