This function returns information about SEC registered money market funds for specified months and years from January 2013 onwards.

sec_money_market_funds(
  only_most_recent = TRUE,
  years = NULL,
  months = NULL,
  nest_data = F,
  return_message = TRUE
)

Arguments

only_most_recent

TRUE search only the most recent period

years

years to include starting in 2013

months

months to include

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) {
sec_money_market_funds(only_most_recent = TRUE, nest_data = FALSE)
sec_money_market_funds(only_most_recent = FALSE, years = 2013:2016)
}