CoinsImp..::..GetCoinMarketChartAsync Method
Get historical market data include price, market cap, and 24h volume (granularity auto).
Namespace:
CoinGeckoAPI.Imps* 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)
Assembly: CoinGeckoAPI (in CoinGeckoAPI.dll)
Syntax
public Task<CoinMarketChartResponse> GetCoinMarketChartAsync( string id, string vs_currency, uint days, CoinMarketChartInterval interval )
Public Function GetCoinMarketChartAsync ( _ id As String, _ vs_currency As String, _ days As UInteger, _ interval As CoinMarketChartInterval _ ) 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()()()().
- days
- Type: UInt32
Data up to number of days ago (eg. 1,14,30,max).
- interval
- Type: CoinGeckoAPI.Types..::..CoinMarketChartInterval
The interval (granularity CoinMarketChartInterval).
Return Value
A Task<CoinMarketChartResponse> representing the asynchronous operation.Exceptions
Exception | Condition |
---|---|
ArgumentNullException | id - Invalid value. Value must be a valid coin id (EX: bitcoin, ethereum) |
ArgumentNullException | vs_currency - Invalid value. Value must be a valid target currency of market data (usd, eur, jpy, etc.) |
ArgumentOutOfRangeException | days - Invalid value. Value must not exceed 900000. |