Esempio n. 1
0
 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));
 }
Esempio n. 2
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. 3
0
 public async Task <HistoricalDayOhlcvForATimestamp> GetHistoricalDayOhlcvForaTs(string fsym, string[] tsyms, string ts,
                                                                                 string e, string calculationType)
 {
     return(await GetAsync <HistoricalDayOhlcvForATimestamp>(
                HistoricalDataApiUrls.HistoricalDayOhlcVts(fsym, tsyms, ts, e, calculationType))
            .ConfigureAwait(false));
 }
Esempio n. 4
0
 public async Task <HistoricalOhlcv> GetHistoricalMinuteOhlcv(string fsym, string tsym, string e,
                                                              int?aggregate, int?limit, string toTs)
 {
     return(await GetAsync <HistoricalOhlcv>(
                HistoricalDataApiUrls.HistoricalMinuteOhlcv(fsym, tsym, e, aggregate, limit, toTs))
            .ConfigureAwait(false));
 }
Esempio n. 5
0
 public async Task <HistoricalExchangeVolume> GetHistoricalDailyExchangeVolume(string tsym)
 {
     return(await GetAsync <HistoricalExchangeVolume>(
                HistoricalDataApiUrls.HistoricalDailyExchangeVolume(tsym, null, null, null, null))
            .ConfigureAwait(false));
 }
Esempio n. 6
0
 public async Task <HistoricalDayAveragePrice> GetHistoricalDayAveragePrice(string fsym, string tsym)
 {
     return(await GetAsync <HistoricalDayAveragePrice>(
                HistoricalDataApiUrls.HistoricalDayAveragePrice(fsym, tsym, null, null, null, null))
            .ConfigureAwait(false));
 }
Esempio n. 7
0
 public async Task <HistoricalDayOhlcvForATimestamp> GetHistoricalDayOhlcvForaTs(string fsym, string[] tsyms)
 {
     return(await GetAsync <HistoricalDayOhlcvForATimestamp>(
                HistoricalDataApiUrls.HistoricalDayOhlcVts(fsym, tsyms, null, null, null))
            .ConfigureAwait(false));
 }
Esempio n. 8
0
 public async Task <HistoricalOhlcv> GetHistoricalMinuteOhlcv(string fsym, string tsym)
 {
     return(await GetAsync <HistoricalOhlcv>(
                HistoricalDataApiUrls.HistoricalMinuteOhlcv(fsym, tsym, null, null, null, null))
            .ConfigureAwait(false));
 }