Exemplo 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));
 }
Exemplo n.º 2
0
 public async Task <HistoricalExchangeVolume> GetHistoricalHourlyExchangeVolume(string tsym)
 {
     return(await GetAsync <HistoricalExchangeVolume>(
                HistoricalDataApiUrls.HistoricalHourlyExchangeVolume(tsym, null, null, null, null))
            .ConfigureAwait(false));
 }