ReqQryExecCombineOrder
请求查询行权指令合并
1.函数原型
virtual int ReqQryExecCombineOrder(CThostFtdcQryExecCombineOrderField *pQryExecCombineOrder, int nRequestID) = 0;
2.参数
pQryExecCombineOrder:行权指令合并查询
struct CThostFtdcQryExecCombineOrderField
{
///经纪公司代码
TThostFtdcBrokerIDType BrokerID;
///投资者代码
TThostFtdcInvestorIDType InvestorID;
///看涨合约代码
TThostFtdcInstrumentIDType CallInstrumentID;
///看跌合约代码
TThostFtdcInstrumentIDType PutInstrumentID;
///交易所代码
TThostFtdcExchangeIDType ExchangeID;
///执行宣告合并编号
TThostFtdcExecOrderSysIDType ExecCombineOrderSysID;
///开始时间
TThostFtdcTimeType InsertTimeStart;
///结束时间
TThostFtdcTimeType InsertTimeEnd;
};
3.返回
0,代表成功。
-1,表示网络连接失败;
-2,表示未处理请求超过许可数;
-3,表示每秒发送请求数超过许可数。
4.调用示例