Form 3 vs Form 4 vs Form 5: The Difference Explained
Form 3 reports initial insider ownership, Form 4 reports trades within 2 business days, and Form 5 is the annual catch-up. How the Section 16 trilogy fits together.

The short version
Forms 3, 4, and 5 are the SEC's Section 16 insider ownership filings, and the difference comes down to timing and purpose. Form 3 is the initial snapshot: what an insider owns when they first become an officer, director, or 10%+ owner, due within 10 days of the event. Form 4 is the transaction report: changes in that ownership, due within 2 business days of the trade, which makes it the only one of the three timely enough to act on. Form 5 is the annual catch-up, due within 45 days of fiscal year end, sweeping up exempt and unreported transactions.
The Section 16 trilogy at a glance
Section 16 of the Securities Exchange Act of 1934 puts corporate insiders (officers, directors, and beneficial owners of more than 10% of a registered class of equity) under a standing disclosure obligation. The SEC splits that obligation across three forms, each answering a different question on a different clock.
| Form | Question it answers | Trigger | Deadline |
|---|---|---|---|
| Form 3 | What does this insider own on day one? | Becoming an officer, director, or 10%+ owner | Within 10 days of the event |
| Form 4 | What did this insider just buy or sell? | A change in beneficial ownership | Within 2 business days of the transaction |
| Form 5 | What was deferred or missed during the year? | Exempt or unreported transactions | Within 45 days of fiscal year end |
The trio is deliberately layered. Form 3 establishes the baseline so later Form 4s have something to be a delta against. Form 4 is the live tape. Form 5 is the reconciliation that closes the books each fiscal year. If you remember one thing, remember that the form number does not rank importance: for anyone watching markets, Form 4 is the center of gravity. The SEC's investor-education page on Forms 3, 4, and 5 is the canonical primer.
It also helps to place these clocks against the rest of the ownership-disclosure stack. A Schedule 13D (an active 5%+ stake) is due within 5 business days. A quarterly 13F from a $100M+ institution arrives a full 45 days after quarter end. Form 4 beats both, which is exactly why insider data gets its own product category. We compare the whole family in 13F vs 13D vs 13G vs Form 4.

Form 3: the starting snapshot
A Form 3 is filed once per insider relationship, within 10 days of someone becoming subject to Section 16. New CFO hired: Form 3. Board seat accepted: Form 3. A fund crosses 10% of a share class: Form 3. The form lists everything the new insider beneficially owns in that issuer at that moment: common shares plus derivative positions such as options and restricted stock units, whether held directly or indirectly through family trusts, LLCs, or retirement accounts.
Two practical points get missed constantly. First, a Form 3 is required even when the answer is "nothing." A new director who owns zero shares still files, reporting that no securities are beneficially owned. Second, a Form 3 is not a transaction. Nothing was bought or sold; it is a balance, not a flow. Treating a large Form 3 as "an insider just bought a huge stake" is one of the classic ways insider dashboards, and language models summarizing them, get the story wrong. The grounding fix is the same one we apply everywhere: tie every claim back to the actual filing document, which is the theme of stopping AI from hallucinating market data.
For analysts, the quiet value of Form 3 is the denominator. Without the baseline, you cannot say whether a later sale means an insider is dumping half their stake or trimming two percent of it. Position-relative context is what separates a real signal from a headline.
Form 4: the transaction tape
Form 4 is where the signal lives. A change in an insider's beneficial ownership (a purchase, a sale, an option exercise, a grant, a gift) must generally be reported within 2 business days of the transaction. That speed is the entire point: among the routine ownership disclosures the SEC collects, Form 4 is the closest thing to a real-time feed of what executives and directors are doing with their own money. The official form and instructions are on sec.gov.
Not every Form 4 line is a conviction trade, though. Each transaction carries a code, and the code matters more than the headline:
| Code | Meaning | Typical signal value |
|---|---|---|
| P | Open-market purchase | Highest: voluntary cash at risk |
| S | Open-market sale | Mixed: often diversification or a 10b5-1 plan |
| A | Grant or award | Low: compensation, not a decision |
| M | Option exercise | Low alone; watch what happens to the shares |
| F | Shares withheld for taxes | Noise |
| G | Gift | Noise for price signal |
Academic work has generally found insider purchases more informative than sales: an executive has many reasons to sell (taxes, a house, diversification) and essentially one reason to buy. That asymmetry is why serious screens focus on code P, and especially on multi-insider buying at a single company, the pattern we examined in insider buying clusters. Arkolith tracks 51,000+ insider transactions, each row carrying its SEC EDGAR accession number so an agent can cite the primary document; the rendered view lives on pages like insider activity for TSM.
Form 5: the annual catch-up
Form 5 is the broom. It is due within 45 days after the issuer's fiscal year end and covers two categories: transactions that were eligible for deferred reporting (certain small acquisitions and bona fide gifts, for example) and transactions that should have appeared on a Form 4 but did not. The Form 5 instructions spell out the eligibility rules.
The second category is the interesting one. A Form 5 reporting a previously unreported open-market trade is an admission of a late filing, and a pattern of lateness is a governance smell worth noting. For data work, Form 5 matters mostly as a completeness mechanism: reconstruct insider ownership purely from Form 4s and the year-end Form 5s are where the missing pieces surface, including gift transfers that quietly move large blocks into trusts and foundations.
One more wrinkle shapes everything you see on this tape: Section 16(b), the short-swing profit rule, lets the issuer recover profits an insider earns from a matched purchase and sale within six months. It is a big part of why quick insider round trips are rare in the data. Also note that many insiders never file a Form 5 at all. If every reportable transaction hit a timely Form 4 during the year, no Form 5 is required, so its absence is the normal case, not a gap in your dataset.
Joining the trilogy to the institutional tape
Insider filings get sharper when joined against institutional positioning. Arkolith's Q1 2026 13F dataset covers 1,824 institutional filers reporting 1.87 million long positions worth $53.7 trillion, refreshed on the quarterly 45-day cycle (the 2026 deadline calendar has the exact dates). The textbook confluence is institutions adding a name across consecutive quarters while multiple insiders file code P Form 4s in the same window. Either signal alone is weak. Together they are at least a question worth investigating, and both sides are fully sourced public filings rather than vendor estimates.
The mechanics of that join are mundane but unforgiving: resolve the issuer consistently across filing types, respect each form's lag (2 business days for Form 4, 45 days for 13F), and never compare an insider's trade date against an institution's quarter-end snapshot as if they were simultaneous. Start from the institutional side or the insider side, then join on the issuer with the timing caveats intact. Done carefully, the combined view answers a question neither filing answers alone: are the people with the most information and the people with the most capital leaning the same way?
Pulling the data programmatically
For an agent, the workflow is: resolve the entity, fetch the filings, cite the accession numbers. One key covers both REST and MCP:
# Resolve a company or fund by name or ticker
curl -H "Authorization: Bearer YOUR_KEY" "https://arkolith.com/api/v1/search?q=NVIDIA"
# List covered institutional filers
curl -H "Authorization: Bearer YOUR_KEY" "https://arkolith.com/api/v1/funds"
# Pull a filer's holdings to join against the insider tape
curl -H "Authorization: Bearer YOUR_KEY" "https://arkolith.com/api/v1/funds/1067983/holdings"
Every response carries provenance back to the source filing, so a model summarizing "insiders are buying" can show its work instead of asserting it. Setup takes a few minutes through the quickstart, and if your agent speaks MCP the same data is exposed as callable tools (background in what an MCP server is). The design goal is simple: an answer about Forms 3, 4, or 5 should always be one hop from the EDGAR document that proves it.

Frequently asked questions about Form 3, Form 4, and Form 5
Do insiders have to file a Form 3 if they own no shares?
Yes. The Form 3 obligation attaches to the role, not the holdings. A new officer or director with zero securities still files within 10 days, reporting that nothing is beneficially owned. That zero baseline is what every later Form 4 is measured against.
What is the difference between a Form 4 and a Form 5?
Form 4 reports changes in beneficial ownership within 2 business days and covers the vast majority of insider transactions. Form 5 is annual, due within 45 days of fiscal year end, and only covers transactions that were exempt from Form 4 reporting or were missed during the year. If everything was reported on time, no Form 5 is needed at all.
Which form is the most useful trading signal?
Form 4, specifically open-market purchases (transaction code P). Academic work has generally found purchases more informative than sales, since insiders sell for many non-informational reasons but rarely buy without a view. Clusters of purchases by multiple insiders at one company are the most-watched pattern.
Where can I find Forms 3, 4, and 5 filings?
All three are public on SEC EDGAR at no cost, filed under both the insider's and the issuer's accounts. Arkolith normalizes the same filings into a queryable API and MCP server, with each transaction linked to its EDGAR accession number so you can verify the source document yourself.
This article explains public filings and data concepts. It is not investment advice.
Keep reading
Insider Trading Data API: Query Form 4 Filings at Scale
What a good insider trading data API looks like: Form 4 mechanics, amendment handling, derivative separation, provenance, and code examples for agents.

How to Read SEC Filings: A Beginner's Map
SEC filings split into company reports and ownership disclosures. Learn which form answers which question, and where the who-owns-what data actually lives.

Form 4 Purchases This Week: UUUU, WRAP, AVO
Three source-checked Form 4 signals from July 6 to 8: two Energy Fuels buyers, an amendment-aware Wrap cluster, and $24.1M reported by a Mission Produce 10% owner.