getAssets {KrakenR} | R Documentation |
Retrieve Asset Information from Kraken Exchange
Description
This function fetches detailed asset information from the Kraken API, either for all available assets or a specified subset.
Usage
getAssets(assets = "All")
Arguments
assets |
A character vector specifying the assets to retrieve. Use "All" to fetch data for all assets. For specific assets, provide their abbreviations (e.g., "ADA" or c("BTC", "ETH")). Default is "All". |
Value
A data frame containing detailed information about the requested assets.
Examples
getAssets()
getAssets("ETH")
getAssets(c("BTC", "AAVE", "ADA"))
[Package KrakenR version 1.0.0 Index]