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