public async Task InitializeAsync(BITTREX.API.Stock stockInstance, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
        {
            Pair = await stockInstance.GetTickerAsync(Name, cancellationToken);

            BittrexCurrency cSource = new BittrexCurrency(this);

            Source = cSource;
            Target = new BittrexCurrency(this, cSource);
        }
 public BittrexMarket(string sKey, string sSecret)
 {
     _trade = new BITTREX.API.Trade(sKey, sSecret);
     _stock = new BITTREX.API.Stock(sKey, sSecret);
 }
 public BittrexMarket()
 {
     _trade = new BITTREX.API.Trade();
     _stock = new BITTREX.API.Stock();
 }