Download COTAHIST file and parses it returning structured data into R objects.
the reference date used to download the file. This reference date will be formatted as year/month/day according to the given type. Accepts ISO formatted date strings.
a string with yearly
for all data of the given year, monthly
for all data of the given month and daily
for the given day.
Location of cache folder (default = cachedir())
Whether to use cache or not (default = TRUE)
All valuable information is in the HistoricalPrices
element of the
returned list.
Header
and Trailer
have informations regarding file generation.
The HistoricalPrices
element has a data.frame with data of many assets
traded in the stock exchange: stocks, bdrs, funds, ETFs, equity options,
forward contracts on equities and a few warrants due to some corporate
events.
a list with 3 data.frames: Header
, HistoricalPrices
, Trailer
.
if (FALSE) { # \dontrun{
# get all data to the year of 2001
df_2001 <- cotahist_get("2001-01-01", "yearly")
# get data of January of 2001
df_200101 <- cotahist_get("2001-01-01", "monthly")
# get data of 2001-01-02
df_daily <- cotahist_get("2001-01-02", "daily")
} # }