Nothing
GetFREData
is an R package for downloading information about companies traded at B3, the Brazilian financial exchange. The source of the data is CVM's ftp site and B3's FRE system, the official registration of all major corporate actions.
The data available in FRE is a rich and very useful for corporate finance studies, including the following tables:
Annualy compiled datasets from FRE for all available companies since 2010 are available at https://www.msperlin.com/blog/data/.
# CRAN (stable)
install.packages('GetFREData')
# github (development)
if (!require(devtools)) install.packages('devtools')
if (!require(GetFREData)) devtools::install_github('msperlin/GetFREData')
library(GetFREData)
library(tidyverse)
search_company('grendene',
cache_folder = tempdir())
l_fre <- get_fre_data(companies_cvm_codes = 19615,
fre_to_read = 'last',
first_year = 2020,
last_year = 2020,
cache_folder = tempdir())
glimpse(l_fre)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.