How to read a Form 4 filing, line by line

A Form 4 looks dense the first time you see one. Almost all of the visual weight is boilerplate. This guide shows you which fields actually matter, in the order they show up on a real filing.

Want this data via API instead of reading about it? Get a free API key →

What you're looking at

Every Form 4 shipped to EDGAR has the same anatomy: a cover page identifying the reporting person and the issuer, a non-derivative securities table (Table I), a derivative securities table (Table II), and a footnotes block. The hard part is that most of the cover-page fields don't carry signal and the interesting content is buried in the tables.

Here is the order to read them in.

1. Confirm who's reporting and their relationship

Top of the filing, you'll see:

  • Name of Reporting Person: the insider, individual or entity.
  • Relationship to Issuer: checkboxes for Director, Officer (with title), 10% Owner, Other.
  • Issuer Name and Ticker: the company.

If "Officer" is checked, read the specific title. A CEO P (open-market purchase) signal is stronger than a Senior VP P signal because the CEO has the broadest information advantage. If "10% Owner" is checked, the filer is an institution or large holder, not an individual, and their motivations are different (rebalancing, portfolio construction, fund flows).

Skip the address fields. They're never useful.

2. Jump straight to Table I (non-derivative securities)

This is where almost all the signal lives. The columns:

  • 1. Title of Security, usually "Common Stock" but can be classes (Class A, Class B, etc.).
  • 2. Transaction Date, the day the trade actually executed. Not the filing date.
  • 2A. Deemed Execution Date, usually blank. Ignore unless populated.
  • 3. Transaction Code, the single most important field. See Form 4 transaction codes.
  • 4. Shares Acquired (A) or Disposed Of (D), quantity. (A) means the insider gained shares, (D) means they lost them.
  • 5. Price, price per share. Always check this.
  • 6. Amount of Securities Beneficially Owned, post-transaction holding. This tells you how big the position is now.
  • 7. Direct (D) or Indirect (I) Ownership, direct means the shares are in the insider's own name; indirect means a trust, family LLC, retirement account, spouse, etc.

The two columns most beginners miss are 5 and 6. The price tells you whether the transaction is informational (open-market) or mechanical (option strike). The post-transaction holding tells you whether this is a small trim of a huge position or a meaningful directional bet.

3. Check Table II (derivative securities)

This table covers options, warrants, RSUs, performance shares, and other derivatives. Most line items here are compensation-related and carry less signal than Table I.

Read Table II carefully when:

  • The Table I transaction code is M (option exercise), Table II will show the corresponding option grant being settled.
  • A grant is being made (A code), Table II will list the new derivative position.
  • The insider is exercising and immediately selling (M + F pair in Table I).

If Table I is empty and the only activity is in Table II, the filing is almost always pure compensation.

4. Read the footnotes

The footnotes block at the bottom of the filing is where the *real* context lives. Common footnote contents:

  • Rule 10b5-1 plan reference: "This sale was effected pursuant to a Rule 10b5-1 trading plan adopted on [date]." A 10b5-1 sale is much weaker bearish signal than a discretionary sale because it was scheduled months earlier.
  • Indirect ownership explanation: "Shares are held by the Smith Family Trust, for which the reporting person is trustee." Tells you the economic exposure even though the ownership is indirect.
  • Tax-withholding explanation: "These shares were withheld to satisfy tax obligations upon the vesting of RSUs." Confirms the F code is mechanical, not a sale of conviction.
  • Gift transfer: "Reporting person transferred shares as a charitable gift to a donor-advised fund." Estate-planning, not a market view.

Footnotes are the single biggest separator between people who actually understand insider data and people who only look at the headline numbers.

5. Compute the dollar value yourself

Form 4 doesn't give you a "total dollar value" field. You compute it: shares × price = transaction value.

Rough heuristic for prioritization:

  • Under $50,000, usually noise, especially small-cap directors.
  • $50,000 - $250,000, meaningful but not extraordinary.
  • $250,000 - $1,000,000, strong signal, especially for officers.
  • Over $1,000,000, high-conviction trade. Read the filing carefully.

These thresholds scale with company size. A $50k buy by the CEO of a microcap is a much bigger commitment than a $50k buy by the CEO of Apple.

6. Cross-reference with the issuer's recent filings

A Form 4 in isolation tells you what one insider did. A Form 4 in context tells you a story. Pull the issuer's recent 8-K filings, did an executive change happen? Did earnings just print? Is there a pending material event? Insiders sometimes file Form 4 immediately after a positive 8-K, which can mean signaling, planned timing, or coincidence.

Practical example via EdgarKit

The whole filing parsed into JSON, ready for the workflow above:

curl "https://api.edgarkit.com/v1/filings?form_type=4&ticker=NVDA&limit=1" \
  -H "Authorization: Bearer YOUR_API_KEY"

Returns the most recent Form 4 for Nvidia with all transaction lines, prices, post-transaction holdings, ownership type, and footnote text already parsed out. You can apply the read-order above directly in code.

FAQ

What's the first thing I should look at in a Form 4?

The transaction code in Table I. If it's P (open-market purchase), keep reading carefully. If it's M plus F (option exercise plus tax withholding), the filing is largely mechanical and probably doesn't need detailed analysis.

Why doesn't Form 4 show the dollar value directly?

The form was designed by lawyers for compliance, not by traders for analysis. You compute the dollar value by multiplying shares times price per share.

What's a "Rule 10b5-1 plan" and why does it matter?

A 10b5-1 plan is a pre-arranged trading plan adopted when the insider was not in possession of material non-public information. Sales executed under a 10b5-1 plan are scheduled months in advance, so they carry much weaker bearish signal than a discretionary sale. The footnote will reference the plan adoption date.

How do I know if "indirect" ownership is meaningful?

Read the footnote. Indirect ownership through a trust the insider controls is essentially equivalent to direct ownership. Indirect ownership through a spouse's separate account or a blind trust the insider does not control is much weaker exposure.

Should I treat every Form 4 with the same weight?

No. Filter by transaction code, role of the filer, and dollar value first. Roughly 80% of Form 4 volume is compensation-related plumbing (A, M, F, gift G, conversions). The remaining 20%, discretionary buys and sells at market prices, is where the signal lives.