OnRspExecCombineOrderAction
行权指令合并操作请求响应
1.函数原型
virtual void OnRspExecCombineOrderInsert(CThostFtdcInputExecCombineOrderField *pInputExecCombineOrder, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast) {};
2.参数
pInputExecCombineOrder:输入的行权指令合并
struct CThostFtdcInputExecCombineOrderField
{
///经纪公司代码
TThostFtdcBrokerIDType BrokerID;
///投资者代码
TThostFtdcInvestorIDType InvestorID;
///看张合约代码
TThostFtdcInstrumentIDType CallInstrumentID;
///看跌合约代码
TThostFtdcInstrumentIDType PutInstrumentID;
///执行宣告合并引用
TThostFtdcOrderRefType ExecCombineOrderRef;
///用户代码
TThostFtdcUserIDType UserID;
///数量
TThostFtdcVolumeType Volume;
///请求编号
TThostFtdcRequestIDType RequestID;
///业务单元
TThostFtdcBusinessUnitType BusinessUnit;
///执行类型
TThostFtdcActionTypeType ActionType;
///交易所代码
TThostFtdcExchangeIDType ExchangeID;
///投资单元代码
TThostFtdcInvestUnitIDType InvestUnitID;
///交易编码
TThostFtdcClientIDType ClientID;
///IP地址
TThostFtdcIPAddressType IPAddress;
///Mac地址
TThostFtdcMacAddressType MacAddress;
};
pRspInfo:响应信息
struct CThostFtdcRspInfoField
{
///错误代码
TThostFtdcErrorIDType ErrorID;
///错误信息
TThostFtdcErrorMsgType ErrorMsg;
};
3.返回
无
4.FAQ
无