This function parses daily SEC filing log starting in 1994 for specified periods

edgar_filing_streams(
  start_date = "2017-02-15",
  end_date = Sys.Date(),
  only_most_recent_data = FALSE,
  index_type = "master",
  table_name_initial = "Filing Logs",
  parse_all_filings = FALSE,
  parse_complete_text_filings = FALSE,
  parse_form_d = FALSE,
  parse_13F = FALSE,
  parse_small_offerings = FALSE,
  parse_form_3_4s = FALSE,
  parse_asset_files = FALSE,
  parse_xbrl = FALSE,
  assign_to_environment = TRUE,
  nest_data = TRUE,
  return_message = TRUE
)

Arguments

start_date

starting date in year-month-date form

end_date

ending date starting in year-month-date form

only_most_recent_data

TRUE return only most recent day's filing stream

index_type

type of index to parse

  • master: parses master log (default)

  • compamy: parses company log

  • filer: parses filer log

nest_data

TRUE return nested data frame

return_message

TRUE return a message after data import

Value

nested tibble or tibble if nest_data = FALSE

References

The Securities and Exchange Commission

See also

Examples

if (FALSE) {
edgar_filing_streams(start_date = "2016-01-01",
end_date = Sys.Date(), only_most_recent_data = FALSE, index_type = 'master',
nest_data = TRUE,
return_message = TRUE)
}