示例#1
0
        static void Main(string[] args)
        {
            q = new ctp_quote();
            t = new ctp_trade();

            t.SetOnFrontConnected(t_connected);
            t.SetOnRspUserLogin(t_login);
            t.SetOnRtnTradingNotice(t_notice);
            t.SetOnRspAuthenticate(t_auth);

            q.SetOnFrontConnected(connected);
            q.SetOnRspUserLogin(login);

            t.RegisterFront("tcp://180.168.146.187:13030");
            q.RegisterFront("tcp://180.168.146.187:13040");

            //t.ReqUserAuthMethod
            string v = t.GetVersion();

            Console.WriteLine(v);
            t.SubscribePrivateTopic(THOST_TE_RESUME_TYPE.THOST_TERT_QUICK);
            t.SubscribePublicTopic(THOST_TE_RESUME_TYPE.THOST_TERT_QUICK);

            t.Init();
            q.Init();
            Console.ReadLine();
        }
示例#2
0
        public CTPQuote()
        {
            Directory.CreateDirectory("ctp_dll");
            string[] files = { "ctp_dll\\thostmduserapi.dll", "ctp_dll\\ctp_quote.dll" };
            object[] objs  = { Resources.thostmduserapi, Resources.ctp_quote };

            for (int i = 0; i < files.Length; ++i)
            {
                var bytes = (byte[])objs[i];
                if (!File.Exists(files[i]) || bytes.Length != new FileInfo(files[i]).Length)
                {
                    File.WriteAllBytes(files[i], bytes);
                }
            }
            _q = new ctp_quote("./ctp_dll/ctp_quote.dll");
            SetCallBack();
        }
示例#3
0
        static void Main(string[] args)
        {
            q = new ctp_quote(new FileInfo("../../../dll/ctp_quote.dll").FullName);
            t = new ctp_trade(new FileInfo("../../../dll/ctp_trade.dll").FullName);

            t.SetOnFrontConnected(t_connected);
            t.SetOnRspUserLogin(t_login);

            q.SetOnFrontConnected(connected);
            q.SetOnRspUserLogin(login);

            t.RegisterFront("tcp://180.168.146.187:10000");
            q.RegisterFront("tcp://180.168.146.187:10010");

            t.Init();
            q.Init();
            Console.ReadLine();
        }
示例#4
0
        static void Main(string[] args)
        {
            q = new ctp_quote("ctp_quote");
            t = new ctp_trade("ctp_trade");

            t.SetOnFrontConnected(t_connected);
            t.SetOnRspUserLogin(t_login);

            q.SetOnFrontConnected(connected);
            q.SetOnRspUserLogin(login);

            t.RegisterFront("tcp://180.168.146.187:10000");
            q.RegisterFront("tcp://180.168.146.187:10010");

            t.Init();
            q.Init();
            Console.ReadLine();
        }
示例#5
0
 /// <summary>
 ///
 /// </summary>
 public CTPQuote()
 {
     _q = new ctp_quote();
     SetCallBack();
 }
示例#6
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="pAbsoluteFilePath">ctp_quote.dll文件绝对路径</param>
 public CTPQuote(string pAbsoluteFilePath)
 {
     _q = new ctp_quote(pAbsoluteFilePath);
     SetCallBack();
 }