openctp / webctp

将CTP接口转换成websocket+json协议对外通讯,适合web类应用。
http://www.openctp.cn
BSD 3-Clause "New" or "Revised" License
42 stars 12 forks source link

订阅行情和取消订阅行情的应答数据格式有误 #17

Closed DennisXie closed 1 year ago

DennisXie commented 1 year ago

期望为

{
  "MsgType": "OnRspUnSubscribeMarketData",
  "SpecificInstrument": {
    "InstrumentID": "au2305"
  },
  "RspInfo": {
    "ErrorID": 0,
    "ErrorMsg": ""
  },
  "RequestID": 0,
  "IsLast": true
}

实际是

{
    "MsgType": "OnRspSubMarketData",
    "RspInfo": {
        "ErrorID": 0,
        "ErrorMsg": "CTP:No Error"
    },
    "RequestID": 0,
    "IsLast": true,
    "SpecificInstrument": "ag2306"
}
DennisXie commented 1 year ago

resolved in #19