ExchangesImp..::..GetExchangeVolumeChartFriendlyAsync Method
Get volume_chart data for a given exchange.
Namespace:
CoinGeckoAPI.ImpsThis is the same as GetExchangeVolumeChartAsync(String, UInt32), however the response is formatted in ExchangeVolumeChartItem items.
Assembly: CoinGeckoAPI (in CoinGeckoAPI.dll)
Syntax
public Task<IEnumerable<ExchangeVolumeChartItem>> GetExchangeVolumeChartFriendlyAsync( string id, uint days )
Public Function GetExchangeVolumeChartFriendlyAsync ( _ id As String, _ days As UInteger _ ) As Task(Of IEnumerable(Of ExchangeVolumeChartItem))
Parameters
- id
- Type: String
The exchange id (can be obtained from GetExchangesListAsync()()()()).
- days
- Type: UInt32
Data up to number of days ago (eg. 1,14,30).
Return Value
A Task<IEnumerable<ExchangeVolumeChartItem>> representing the asynchronous operation.Exceptions
Exception | Condition |
---|---|
ArgumentNullException | id - Invalid value. Value must be a valid exchange id (EX: bitstamp) |