示例#1
0
 /// <summary>
 /// Return an interval of historic OHLCV (Open, High, Low, Close, Volume) market quotes for a cryptocurrency. Currently daily and hourly OHLCV periods are supported.
 /// </summary>
 public Response <OhlcvHistoricalResponse> GetOhlcvHistorical(OhlcvHistoricalParameters request)
 {
     return(GetOhlcvHistoricalAsync(request, CancellationToken.None).Result);
 }
示例#2
0
 /// <summary>
 /// Return an interval of historic OHLCV (Open, High, Low, Close, Volume) market quotes for a cryptocurrency. Currently daily and hourly OHLCV periods are supported.
 /// </summary>
 public async Task <Response <OhlcvHistoricalResponse> > GetOhlcvHistoricalAsync(OhlcvHistoricalParameters request, CancellationToken cancellationToken)
 {
     return(await SendApiRequest <OhlcvHistoricalResponse>(request, "cryptocurrency/ohlcv/historical", cancellationToken));
 }