What are the 10 most frequent SEC filing types and how to find out?
Probably almost everybody already knows that Form Type 4 (Ownership form) is the most frequent SEC filing type. But what about the 2nd and 3rd most frequent filing types? Annual- and quarterly reports cannot be so frequent, right? So let’s find out and use some nice Javascript to do so.
1. Read the filing index
First we need to read a large bunch of data from the filing index. I am not going to cover here the details of downloading the filing index data, because it is described here at the https://www.sec.gov homepage. Instead let’s assume we have the full filing index files for Q3, Q4, Q1 and Q2 downloaded and saved as files like this:
- master_2016_Q3.idx
- master_2016_Q4.idx
- master_2017_Q1.idx
- master_2017_Q2.idx
To illustrate and help the further understanding, here is an example of what such a filing index files looks like:
|
|
Then we use the following code to read and store all the filings listed in these filings index files:
|
|
The filings array is the source of data we are going to use for the further analysis.
2. Build a histogram data structure for the different filing form types
The histogram is stored in an object. The property names are the filing form types and the property value represent the count of this form type in the given quarters. Each entry from the filings array gets analyzed by a little function:
|
|
Pretty straight forward.
3. Display the result
I keep this super simple, but it is sufficient to get a good overview of how often the different filing form types occur. I am using ascii-histogram which you can find on npm. Important is that you turn the sort feature on to get a properly sorted histogram.
|
|
And finally here is the actual result for the time frame Q3 2016 to Q2 2017:
|
|
And since it is so easy, I am not just showing the top 10, but the top 19!
4. Interpretation of the result
I leave this up to you for now. Maybe I am going to write some of my thoughts on this later.
See also my other post about some general statistics about SEC filings:
Just some statistics about SEC filings