Esempio n. 1
0
 public async Task <HistoricalExchangeVolume> GetHistoricalDailyExchangeVolume(string tsym, string e, int?aggregate,
                                                                               int?limit, string toTs)
 {
     return(await GetAsync <HistoricalExchangeVolume>(
                HistoricalDataApiUrls.HistoricalDailyExchangeVolume(tsym, e, aggregate, limit, toTs))
            .ConfigureAwait(false));
 }
Esempio n. 2
0
 public async Task <HistoricalExchangeVolume> GetHistoricalDailyExchangeVolume(string tsym)
 {
     return(await GetAsync <HistoricalExchangeVolume>(
                HistoricalDataApiUrls.HistoricalDailyExchangeVolume(tsym, null, null, null, null))
            .ConfigureAwait(false));
 }