CoinsImp Methods

The CoinsImp type exposes the following members.

Methods


  Name Description
Public method GetCoinAsync

Get current data (name, price, market, ... including exchange tickers) for a coin.

IMPORTANT:

Ticker object is limited to 100 items, to get more tickers, use GetCoinTickersAsync(String, IEnumerable<(Of <<'(String>)>>), Boolean, UInt32, CoinTickersOrderBy, Boolean). Ticker is_stale is true when ticker has not been updated/unchanged from the exchange for a while. Ticker is_anomaly is true if ticker's price is outliered by our system. You are responsible for managing how you want to display these information(e.g.footnote, different background, change opacity, hide).

Public method GetCoinHistoryAsync
Get historical data (name, price, market, stats) at a given date for a coin.
Public method GetCoinMarketChartAsync
Get historical market data include price, market cap, and 24h volume (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)

Public method GetCoinMarketChartRangeAsync
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)

Public method GetCoinMarketsAsync
Use this to obtain all the coins market data (price, market cap, volume).
Public method GetCoinOhlcAsync
Get coin's OHLC (open, high, low, close) data (granularity auto).

* 1 - 2 days: 30 minutes

* 3 - 30 days: 4 hours

* 31 days and beyond: 4 days

Public method GetCoinOhlcItemsAsync
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

Public method GetCoinsListAsync
Use this to obtain all the coins' id in order to make API calls.
Public method GetCoinTickersAsync
Get coin tickers.

IMPORTANT:

Ticker object is limited to 100 items per page. Ticker is_stale is true when ticker has not been updated/unchanged from the exchange for a while. Ticker is_anomaly is true if ticker's price is outliered by our system. You are responsible for managing how you want to display these information(e.g.footnote, different background, change opacity, hide).