This function returns monthly summary information for every ADV filing manager from 2006 onwards.

adv_managers_periods_summaries(
  periods = c("2018-06"),
  all_periods = FALSE,
  only_most_recent = FALSE,
  include_exempt = TRUE,
  nest_data = FALSE,
  return_message = TRUE
)

Arguments

periods

dates in year-month form

all_periods

include all periods

nest_data

return a nested data frame

return_message

return a message after parsing data

is_exempt

exempt, non-exempt filers

Value

where nest_data is TRUE a nested tibble by period and type of filer, where nest_data is FALSE a tibble

See also

Examples

if (FALSE) {
adv_managers_periods_summaries(periods = c("2006-06", "2016-12", "2017-01"), all_periods = FALSE, is_exempt = c(FALSE,TRUE), only_most_recent = FALSE, nest_data = FALSE)

adv_managers_periods_summaries(only_most_recent = TRUE)
}