Arguments
- type
character-vector of length 1. One of,
"ohlc"
- Available exchanges for Open, High, Low, Close and Volume market data. See theget_quote()
-function."lsratio"
- Available exchanges for Long-Short ratios See theget_lsratio()
-function."fundingrate"
- Available exchanges for Funding rates. See theget_fundingrate()
-function."interest"
- Available exchanges for Open interest on perpetual contracts on both sides. See theget_openinterest()
-function.
Details
The endpoints supported by the available_exchanges()
are not uniform,
so exchanges available for, say, get_lsratio()
is not necessarily the same as those available for get_quote()
See also
Other deprecated:
availableIntervals()
,
availableTickers()
,
getFGIndex()
,
getLSRatio()
,
getQuote()
Examples
# script start;
# 1) available exchanges
# on ohlc-v endpoint
cryptoQuotes::available_exchanges(
type = "ohlc"
)
#> ℹ Available Exchanges:
#> ✔ binance, bitmart, bybit, kraken, kucoin
# 2) available exchanges
# on long-short ratios
cryptoQuotes::available_exchanges(
type = "lsratio"
)
#> ℹ Available Exchanges:
#> ✔ binance, bybit, kraken
# script end;