Introducing edgarWebR

Micah J Waldstein micah@waldste.in

2017-08-02

knitr::opts_chunk$set(collapse = T, comment = "#>")
library(edgarWebR)
library(dplyr, quietly=TRUE)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(purrr, quietly=TRUE)
library(ggplot2)
set.seed(0451)
# Cache http requests
library(httptest)
## Loading required package: testthat
## 
## Attaching package: 'testthat'
## The following object is masked from 'package:purrr':
## 
##     is_null
## The following object is masked from 'package:dplyr':
## 
##     matches
start_vignette("intro")

There are plenty of packages for R that allow for fetching and manipulation of companies’ financial data, often fetching that direct from public filings with the SEC. All of these packages have the goal of getting to the XBRL data, containing financial statements, typically in annual (10-K) or quarterly (10-Q) filings.

SEC filings however contain far more information. edgarWebR is the first step in accessing that data by providing an interface to the SEC EDGAR search tools and the metadata they provide.

Current Features

Simple Usecase

Using information about filings, we can use edgarWebR to see how long after the close of a financial period it takes for a company to make a filing. We can also see how that time has changed.

Get Data

First, we’ll fetch a bunch of 10-K and 10-Q filings for our given company using company_filings(). To make sure we’re going far enough back we’ll take a peak at the tail of our results

Note that explicitly filtering caused us to go from 100 to 97 rows.

Type Filing Date Accession No. Size Link
95 10-Q 1997-02-14 0000950005-97-000277 118 KB Link
96 10-Q 1996-11-14 0000950005-96-000920 87 KB Link
97 10-Q 1996-08-14 0000950005-96-000615 72 KB Link
98 10-K 1996-07-01 0000912057-96-013563 197 KB Link
99 10-Q 1996-02-14 0000912057-96-002551 85 KB Link
100 10-Q 1995-11-14 0000912057-95-009843 83 KB Link

We’ve received filings dating back to 1995 which seems good enough for our purposes, so next we’ll get the filing information for each filing.

So far we’ve done everything in base R, but now we’ll use some useful functions from dplyr and purrr to make things a bit easier.

Type Filing Date Period Date Delay Documents Size (B)
10-Q 2019-11-06 2019-09-30 37.04 102 13,048,623
10-Q 2019-08-06 2019-06-30 37.00 101 11,575,034
10-K 2019-05-24 2019-03-31 54.00 133 16,923,278
10-Q 2019-02-06 2018-12-31 37.00 104 14,024,047
10-Q 2018-11-06 2018-09-30 37.04 103 13,828,893
10-Q 2018-08-08 2018-06-30 39.00 102 12,517,185

Basic Analysis

Now our data is arranged, we can run some summary statistics and plot using ggplot2.

Type Count Avg. Delay Median Delay Avg. Size Avg. Docs
10-K 24 66.77 59 7,605.28 31.25
10-Q 73 39.71 39 5,272.68 22.66

No surprise, yearly filings (10-K’s) are larger and take more time than quarterly filings (10-K’s). Lets see how the times are distributed:

We can also examine how the filing delay has changed over time:

Whether because of some internal change or change to SEC rules, the time between the end of the fiscal year and the 10-K has dropped quite a bit, though there is still a bit of variation.

An interesting extension would be to compare the filing delays to the company’s stock price, overall market performance and other companies to see if there are particular drivers to the pattern.

The jump in size ~2010 is the requirement for inclusion of financial datafiles starting, but there is still interesting variations.

More to come

The SEC contains a wealth of information and we’re only scratching the surface. edgarWebR itself has a lot more functionality than what we’ve explored here and there is more coming.

How to Download

edgarWebR is available from CRAN, so can be simply installed via

install.packages("edgarWebR")

If you want the latest and greatest, you can get a copy of the development version from github by using devtools:

# install.packages("devtools")
devtools::install_github("mwaldstein/edgarWebR")