View source: R/bitcoincharts_download_large.R
bitcoincharts_download_large | R Documentation |
This function downloads a pre-specified bitcoin currency pair time series from api.bitcoincharts.com and it is suitable for large files
bitcoincharts_download_large(
address = "D:/Downloads/",
name = "bitchangePLN.csv.gz",
save_data = FALSE
)
address |
is the directory address where to save the data |
name |
is the name of the file to be downloaded from api.bitcoincharts.com |
save_data |
if TRUE, then the downloaded trades price series will be saved in the bitcoin_data.rds file (in the Working Directory) |
This function downloads a pre-specified bitcoin currency pair time series from api.bitcoincharts.com . It is better to use this function for downloading large files instead of bitcoincharts_single_download, which may gives an error (depending on the platform used).
data is a dataframe containing 'timestamp', 'price', 'volume' for the selected bitcoin trades time series.
## Not run:
bb <-bitcoincharts_download_large(name = "coinbaseEUR.csv.gz", save_data=TRUE)
str(bb)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.