ExchangesImp Methods
The ExchangesImp type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() |
GetExchangeAsync |
Get exchange volume in BTC and top 100 tickers only.
IMPORTANT: * Ticker object is limited to 100 items, to get more tickers, use GetExchangeTickersAsync(String, IEnumerable<(Of <<'(String>)>>), Boolean, UInt32, Boolean, CoinTickersOrderBy) * Ticker is_stale is true when ticker that 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) |
![]() |
GetExchangesAsync |
List all exchanges (active with trading volumes).
|
![]() |
GetExchangesListAsync |
Use this to obtain all the markets' id in order to make API calls.
|
![]() |
GetExchangeTickersAsync |
Get exchange tickers (paginated, 100 tickers per page).
* Ticker object is limited to 100 items per page * Ticker is_stale is true when ticker that 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) |
![]() |
GetExchangeVolumeChartAsync |
Get volume_chart data for a given exchange.
The results of this are not very user friendly (but good for charting). For a more user friendly data format see GetExchangeVolumeChartFriendlyAsync(String, UInt32). |
![]() |
GetExchangeVolumeChartFriendlyAsync |
Get volume_chart data for a given exchange.
This is the same as GetExchangeVolumeChartAsync(String, UInt32), however the response is formatted in ExchangeVolumeChartItem items. |