OnErrRtnQuoteAction
报价操作错误回报, 当执行ReqQuoteAction后有字段填写不对之类的CTP报错则通过此接口返回
◇ 1.函数原型
virtual void OnErrRtnQuoteAction(CThostFtdcQuoteActionField *pQuoteAction, CThostFtdcRspInfoField *pRspInfo) {};
◇ 2.参数
pQuoteAction:报价操作
struct CThostFtdcQuoteActionField
{
///经纪公司代码
TThostFtdcBrokerIDType BrokerID;
///投资者代码
TThostFtdcInvestorIDType InvestorID;
///报价操作引用
TThostFtdcOrderActionRefType QuoteActionRef;
///报价引用
TThostFtdcOrderRefType QuoteRef;
///请求编号
TThostFtdcRequestIDType RequestID;
///前置编号
TThostFtdcFrontIDType FrontID;
///会话编号
TThostFtdcSessionIDType SessionID;
///交易所代码
TThostFtdcExchangeIDType ExchangeID;
///报价操作编号
TThostFtdcOrderSysIDType QuoteSysID;
///操作标志
TThostFtdcActionFlagType ActionFlag;
///操作日期
TThostFtdcDateType ActionDate;
///操作时间
TThostFtdcTimeType ActionTime;
///交易所交易员代码
TThostFtdcTraderIDType TraderID;
///安装编号
TThostFtdcInstallIDType InstallID;
///本地报价编号
TThostFtdcOrderLocalIDType QuoteLocalID;
///操作本地编号
TThostFtdcOrderLocalIDType ActionLocalID;
///会员代码
TThostFtdcParticipantIDType ParticipantID;
///客户代码
TThostFtdcClientIDType ClientID;
///业务单元
TThostFtdcBusinessUnitType BusinessUnit;
///报单操作状态
TThostFtdcOrderActionStatusType OrderActionStatus;
///用户代码
TThostFtdcUserIDType UserID;
///状态信息
TThostFtdcErrorMsgType StatusMsg;
///合约代码
TThostFtdcInstrumentIDType InstrumentID;
///营业部编号
TThostFtdcBranchIDType BranchID;
///投资单元代码
TThostFtdcInvestUnitIDType InvestUnitID;
///IP地址
TThostFtdcIPAddressType IPAddress;
///Mac地址
TThostFtdcMacAddressType MacAddress;
};
OrderActionStatus:报价撤销的状态信息,此处返回的是错误信息
StatusMsg:报价单最后的状态
pRspInfo:响应信息
struct CThostFtdcRspInfoField
{
///错误代码
TThostFtdcErrorIDType ErrorID;
///错误信息
TThostFtdcErrorMsgType ErrorMsg;
};
◇ 3.返回
无
◇ 4.FAQ
无