예제 #1
0
        public PoloniexConnector()
        {
            api = new ExchangePoloniexAPI();
            var symbols = api.GetSymbols();

            Debug.Print("{0}: ", api.Name);
            foreach (var s in symbols)
            {
                Debug.Print("\t{0}", s);
            }
            //  base.Register(this);
        }