availableTickers {cryptoQuotes}R Documentation

Get available cryptocurrency pairs

Description

[Deprecated]

This function returns all available cryptocurrewncy pairs on the available_exchanges

Usage

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

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.

Details

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

Value

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

Author(s)

Serkan Korkmaz

See Also

Other deprecated: availableExchanges(), availableIntervals(), getFGIndex(), getLSRatio(), getQuote()

Examples

## Not run: 
  ## available tickers
  ## in Binance spot market
  head(
    cryptoQuotes::available_tickers(
      source = 'binance',
      futures = FALSE
    )
  )

  ## available tickers
  ## on Kraken futures market
  head(
    cryptoQuotes::available_tickers(
      source = 'kraken',
      futures = TRUE
    )
  )

## End(Not run)




[Package cryptoQuotes version 1.3.0 Index]