Using GetFREData

knitr::opts_chunk$set(
  eval = FALSE,
  comment = "#>",
  out.width = "100%",
  results='hold'
)
library(knitr)

Package GetFREData

GetFREData is an R package for downloading information about companies traded at B3, the Brazilian financial exchange. The source of the data is B3's FRE, the official system for the registration of all major corporate actions.

The corporate data includes (since 2010):

Installation

# CRAN (stable)
install.packages('GetFREData')

# github (development)
if (!require(devtools)) install.packages('devtools')
if (!require(GetFREData)) devtools::install_github('msperlin/GetFREData') 

Example of usage

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)


Try the GetFREData package in your browser

Any scripts or data that you put into this service are public.

GetFREData documentation built on June 13, 2022, 5:08 p.m.