View source: R/available_tickers.R
available_tickers | R Documentation |
Get actively traded cryptocurrency pairs on the available_exchanges()
.
available_tickers(source = "binance", futures = TRUE)
source |
A character-vector of length 1. |
futures |
A logical-vector of length 1. TRUE by default. Returns futures market if TRUE, spot market otherwise. |
The naming-conventions across, and within, available_exchanges()
are not
necessarily the same. This function lists all actively traded tickers.
A character-vector of actively traded cryptocurrency pairs on the exchange, and the specified market.
Sample output
#> [1] "10000000AIDOGEUSDT" "1000000BABYDOGEUSDT" "1000000MOGUSDT" #> [4] "1000000PEIPEIUSDT" "10000COQUSDT" "10000LADYSUSDT"
Serkan Korkmaz
Other supported calls:
available_exchanges()
,
available_intervals()
## Not run:
# 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
)
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.