OnRspQryBrokerTradingParams
请求查询经纪公司交易参数响应,当执行ReqQryBrokerTradingParams后,该方法被调用
◇ 1.函数原型
virtual void OnRspQryBrokerTradingParams(CThostFtdcBrokerTradingParamsField *pBrokerTradingParams, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast) {};
◇ 2.参数
pBrokerTradingParams:经纪公司交易参数
struct CThostFtdcBrokerTradingParamsField
{
///经纪公司代码
TThostFtdcBrokerIDType BrokerID;
///投资者代码
TThostFtdcInvestorIDType InvestorID;
///保证金价格类型
TThostFtdcMarginPriceTypeType MarginPriceType;
///盈亏算法
TThostFtdcAlgorithmType Algorithm;
///可用是否包含平仓盈利
TThostFtdcIncludeCloseProfitType AvailIncludeCloseProfit;
///币种代码
TThostFtdcCurrencyIDType CurrencyID;
///期权权利金价格类型
TThostFtdcOptionRoyaltyPriceTypeType OptionRoyaltyPriceType;
///投资者帐号
TThostFtdcAccountIDType AccountID;
};
Algorithm:根随期货公司柜台的设置。
OptionRoyaltyPriceType:该算法针对期权保证金算法,而非权利金算法;只限今开仓。
pRspInfo:响应信息
struct CThostFtdcRspInfoField
{
///错误代码
TThostFtdcErrorIDType ErrorID;
///错误信息
TThostFtdcErrorMsgType ErrorMsg;
};
nRequestID:返回用户操作请求的ID,该ID 由用户在操作请求时指定。
bIsLast:指示该次返回是否为针对nRequestID的最后一次返回。
◇ 3.返回
无
◇ 4.FAQ
无