public static void InitRespFunc() { _client = new CTP_CLI.CCTPClient(CommConfig.INVESTOR, CommConfig.PASSWORD, CommConfig.BROKER, CommConfig.ADDRESS); //CTP后台成功建立连接的回调函数 _client.FrontConnected += _client_FrontConnected; //CTP后台连接丢失回调函数 _client.FrontDisconnected += _client_FrontDisconnected; //登陆成功回调函数 _client.RspUserLogin += _client_RspUserLogin; //报单变化回调函数 _client.RtnOrder += _client_RtnOrder; //成交变化回调函数 _client.RtnTrade += _client_RtnTrade; //报单修改操作回调函数(暂时不用) _client.RspOrderAction += _client_RspOrderAction; //报单失败回调函数 _client.RspOrderInsert += _client_RspOrderInsert; //报单问题回调函数 _client.ErrRtnOrderInsert += _client_ErrRtnOrderInsert; //保单查询回调函数 _client.RspQryOrder += _client_RspQryOrder; }
public static void InitRespFunc() { _client = new CTP_CLI.CCTPClient(INVESTOR, PASSWORD, BROKER, ADDRESS); //CTP后台成功建立连接的回调函数 _client.FrontConnected += _client_FrontConnected; //CTP后台连接丢失回调函数 _client.FrontDisconnected += _client_FrontDisconnected; //登陆成功回调函数 _client.RspUserLogin += _client_RspUserLogin; //报单变化回调函数 _client.RtnOrder += _client_RtnOrder; //成交变化回调函数 _client.RtnTrade += _client_RtnTrade; //报单修改操作回调函数(暂时不用) _client.RspOrderAction += _client_RspOrderAction; //报单失败回调函数 _client.RspOrderInsert += _client_RspOrderInsert; //报单问题回调函数 _client.ErrRtnOrderInsert += _client_ErrRtnOrderInsert; }