Learn R Programming

edgar (version 2.0.1)

getFilingsHTML: Get HTML view of EDGAR filings

Description

getFilingsHTML retrieves complete EDGAR filings and store them in HTML format for view.

Usage

getFilingsHTML(cik.no, form.type, filing.year, quarter)

Arguments

cik.no

vector of CIK number of firms in integer format. Suppress leading zeroes from CIKs. Keep cik.no = 'ALL' if needs to download for all CIKs.

form.type

character vector containing form type to be downloaded. form.type = 'ALL' if need to download all forms.

filing.year

vector of four digit numeric year

quarter

vector of one digit quarter integer number. By deault, it is kept as c(1 ,2, 3, 4).

Value

Function saves EDGAR filings in HTML format and returns filing information in dataframe format.

Details

getFilingsHTML function takes CIKs, form type, filing year, and quarter of the filing as input. The function imports edgar filings downloaded via getFilings function; otherwise, it downloads the filings which are not already been downloaded. It then reads the downloaded filing, scraps main body the filing, and save the filing content in 'Edgar filings_HTML view' directory in HTML format. The new directory 'Edgar filings_HTML view' will be automatically created by this function. This function only gives a view of the main body of the filing, exhibit and other supporting documents will not appear in HTML file.

Examples

Run this code
# NOT RUN {
output <- getFilingsHTML(cik.no = c(1000180, 38079), c('10-K','10-Q'), 
                         2006, quarter = c(1, 2, 3))

## download '10-Q' and '10-K' filings filed by the firm with 
CIK = 1000180 in quarters 1,2, and 3 of the year 2006. These filings 
will be stored in the current working directory.

# }

Run the code above in your browser using DataLab