Learn R Programming

cryptoQuotes (version 1.3.4)

available_tickers: Get actively traded cryptocurrency pairs

Description

[Stable]

Get actively traded cryptocurrency pairs on the available_exchanges().

Usage

available_tickers(source = "binance", futures = TRUE)

Value

A character-vector of actively traded cryptocurrency pairs on the exchange, and the specified market.

Sample output

#> [1] "0GUSDT"              "1000000BABYDOGEUSDT" "1000000CHEEMSUSDT"  
#> [4] "1000000MOGUSDT"      "10000QUBICUSDT"      "10000SATSUSDT"

Arguments

source

A character-vector of length 1. binance by default. See available_exchanges() for available exchanges.

futures

A logical-vector of length 1. TRUE by default. Returns futures market if TRUE, spot market otherwise.

Author

Serkan Korkmaz

Details

The naming-conventions across, and within, available_exchanges() are not necessarily the same. This function lists all actively traded tickers.

See Also

Other supported calls: available_exchanges(), available_intervals()

Examples

Run this code
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
    )
  )
}



Run the code above in your browser using DataLab