OnErrRtnOrderAction
报单操作错误回报,当执行ReqOrderAction后有字段填写不对之类的CTP报错则通过此接口返回
◇ 1.函数原型
virtual void OnErrRtnOrderAction(CThostFtdcOrderActionField *pOrderAction, CThostFtdcRspInfoField *pRspInfo) {};
◇ 2.参数
pOrderAction:报单操作
struct CThostFtdcOrderActionField
{
///经纪公司代码
TThostFtdcBrokerIDType BrokerID;
///投资者代码
TThostFtdcInvestorIDType InvestorID;
///报单操作引用
TThostFtdcOrderActionRefType OrderActionRef;
///报单引用
TThostFtdcOrderRefType OrderRef;
///请求编号
TThostFtdcRequestIDType RequestID;
///前置编号
TThostFtdcFrontIDType FrontID;
///会话编号
TThostFtdcSessionIDType SessionID;
///交易所代码
TThostFtdcExchangeIDType ExchangeID;
///报单编号
TThostFtdcOrderSysIDType OrderSysID;
///操作标志
TThostFtdcActionFlagType ActionFlag;
///价格
TThostFtdcPriceType LimitPrice;
///数量变化
TThostFtdcVolumeType VolumeChange;
///操作日期
TThostFtdcDateType ActionDate;
///操作时间
TThostFtdcTimeType ActionTime;
///交易所交易员代码
TThostFtdcTraderIDType TraderID;
///安装编号
TThostFtdcInstallIDType InstallID;
///本地报单编号
TThostFtdcOrderLocalIDType OrderLocalID;
///操作本地编号
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;
};
OrderSysID:交易所返回的报单编号
ActionFlag:撤单标志,现在只支持删除,不支持修改
pRspInfo:响应信息
struct CThostFtdcRspInfoField
{
///错误代码
TThostFtdcErrorIDType ErrorID;
///错误信息
TThostFtdcErrorMsgType ErrorMsg;
};
◇ 3.返回
无
◇ 4.FAQ
无