public async Task <HistoricalDayAveragePrice> GetHistoricalDayAveragePrice(string fsym, string tsym, string e, string avgType, string utcHourDiff, string toTs) { return(await GetAsync <HistoricalDayAveragePrice>( HistoricalDataApiUrls.HistoricalDayAveragePrice(fsym, tsym, e, avgType, utcHourDiff, toTs)) .ConfigureAwait(false)); }
public async Task <HistoricalDayAveragePrice> GetHistoricalDayAveragePrice(string fsym, string tsym) { return(await GetAsync <HistoricalDayAveragePrice>( HistoricalDataApiUrls.HistoricalDayAveragePrice(fsym, tsym, null, null, null, null)) .ConfigureAwait(false)); }