Get actively traded cryptocurrency pairs on the available_exchanges()
.
Value
A character-vector of actively traded cryptocurrency pairs on the exchange, and the specified market.
Sample output
Details
The naming-conventions across, and within, available_exchanges()
are not necessarily the same. This function lists
all actively traded tickers.
See also
Other deprecated:
availableExchanges()
,
availableIntervals()
,
getFGIndex()
,
getLSRatio()
,
getQuote()
Examples
if (FALSE) {
# 1) available tickers
# in Binance spot market
head(
cryptoQuotes::available_tickers(
source = 'binance',
futures = FALSE
)
)
# 2) available tickers
# on Kraken futures market
head(
cryptoQuotes::available_tickers(
source = 'kraken',
futures = TRUE
)
)
}