CoinsImp..::..GetCoinMarketChartRangeAsync Method

Get historical market data include price, market cap, and 24h volume within a range of timestamp (granularity auto).

* Data granularity is automatic (cannot be adjusted)

* 1 day from current time = 5 minute interval data

* 1 - 90 days from current time = hourly data

* above 90 days from current time = daily data(00:00 UTC)

Namespace:  CoinGeckoAPI.Imps
Assembly:  CoinGeckoAPI (in CoinGeckoAPI.dll)

Syntax


public Task<CoinMarketChartResponse> GetCoinMarketChartRangeAsync(
	string id,
	string vs_currency,
	DateTimeOffset fromDate,
	DateTimeOffset toDate
)
Public Function GetCoinMarketChartRangeAsync ( _
	id As String, _
	vs_currency As String, _
	fromDate As DateTimeOffset, _
	toDate As DateTimeOffset _
) As Task(Of CoinMarketChartResponse)

Parameters

id
Type: String
The id of the coin cryptocurrency. See GetCoinsListAsync(Boolean).
vs_currency
Type: String
The target currency of market data (usd, eur, jpy, etc.). See GetSupportedVSCurrenciesAsync()()()().
fromDate
Type: DateTimeOffset
From date.
toDate
Type: DateTimeOffset
To date.

Return Value

A Task<CoinMarketChartResponse> representing the asynchronous operation.

Exceptions


ExceptionCondition
ArgumentNullExceptionid - Invalid value. Value must be a valid coin id (EX: bitcoin, ethereum)
ArgumentNullExceptionvs_currency - Invalid value. Value must be a valid target currency of market data (usd, eur, jpy, etc.)