好友
阅读权限10
听众
最后登录1970-1-1
|
jtwc
发表于 2023-5-30 12:59
本帖最后由 jtwc 于 2023-5-30 13:02 编辑
各位老师,C++如何实现下面的功能呢?谢谢了
ThostFtdcOrderRefType order_ref; //报单编号
TThostFtdcOrderRefType myorder_ref; //新报单编号
void CustomTradeSpi::OnRspUserLogin(CThostFtdcRspUserLoginField* pRspUserLogin, CThostFtdcRspInfoField* pRspInfo, int nRequestID, bool bIsLast)
{
if (!isErrorRspInfo(pRspInfo)) {
std::cout << "=====交易账户登录成功====" << std::endl;
loginFlag = true;
std::cout << "交易日:" << pRspUserLogin->TradingDay << std::endl;
std::cout << "登录时间:" << pRspUserLogin->LoginTime << std::endl;
std::cout << "经纪商:" << pRspUserLogin->BrokerID << std::endl;
std::cout << "账户名:" << pRspUserLogin->UserID << std::endl;
//保存会话参数
trade_front_id = pRspUserLogin->FrontID; // 前置编号
session_id = pRspUserLogin->SessionID; // 会话编号
atoi(pRspUserLogin->MaxOrderRef); // 最大报单
//将下单编号初始化
//新报单编号=最大报单编号+1
myorder_ref = atoi(pRspUserLogin->MaxOrderRef) + 1;
// 投资者结算结果确认
reqSettlementInfoConfirm();
}
}
出错
//新报单编号=最大报单编号+1
myorder_ref = atoi(pRspUserLogin->MaxOrderRef) + 1;
2 IntelliSense: 表达式必须是可修改的左值
|
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|