void BuildCurrenciesList()
        {
            PoloniexExchange.Default.Connect();
            BittrexExchange.Default.Connect();
            UpdateHelper = new TickerCollectionUpdateHelper();
            UpdateHelper.Exchanges.Add(PoloniexExchange.Default);
            UpdateHelper.Exchanges.Add(BittrexExchange.Default);

            UpdateHelper.Initialize();
            ArbitrageList = UpdateHelper.Items;
            tickerArbitrageInfoBindingSource.DataSource = ArbitrageList;
        }
        void BuildCurrenciesList()
        {
            PoloniexExchange.Default.Connect();
            BinanceExchange.Default.Connect();
            //BittrexExchange.Default.Connect();
            UpdateHelper = new TickerCollectionUpdateHelper();
            UpdateHelper.Exchanges.Add(PoloniexExchange.Default);
            UpdateHelper.Exchanges.Add(BinanceExchange.Default);
            //UpdateHelper.Exchanges.Add(BittrexExchange.Default);

            UpdateHelper.Initialize();
            ArbitrageList = UpdateHelper.Items;
        }