CoinsImp..::..GetCoinOhlcItemsAsync Method

Get coin's OHLC (open, high, low, close) data (granularity auto).

This is the same as GetCoinOhlcAsync(String, String, UInt32), however the results are returned as concrete class items of OhlcItem.

* 1 - 2 days: 30 minutes

* 3 - 30 days: 4 hours

* 31 days and beyond: 4 days

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

Syntax


public Task<IEnumerable<OhlcItem>> GetCoinOhlcItemsAsync(
	string id,
	string vs_currency,
	uint days
)
Public Function GetCoinOhlcItemsAsync ( _
	id As String, _
	vs_currency As String, _
	days As UInteger _
) As Task(Of IEnumerable(Of OhlcItem))

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 (1/7/14/30/90/180/365/max).

Return Value

A Task<IEnumerable<OhlcItem>> representing the asynchronous operation.