SEC Filing Funds

filing_funds(x)

# S3 method for character
filing_funds(x)

# S3 method for xml_node
filing_funds(x)

Arguments

x

URL to a SEC filing index page

Value

A dataframe with all the funds associated with a given filing

Examples

# \donttest{ # Typically you'd get the URL from one of the search functions x <- paste0("https://www.sec.gov/Archives/edgar/data/", "933691/000119312517247698/0001193125-17-247698-index.htm") try(filing_funds(x))
#> No encoding supplied: defaulting to UTF-8.
#> Error in check_result(res) : #> EDGAR request blocked from Undeclared Automated Tool. #> Please visit https://www.sec.gov/developer for best practices. #> See https://mwaldstein.github.io/edgarWebR/index.html#ethical-use--fair-access for your responsibilities #> Consider also setting the environment variable 'EDGARWEBR_USER_AGENT
# }