STRASMORE/EXPLORE 2,170 QUERIES

Share of Form 4 lines booked as indirect ownership, by transaction code

Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-08, from How to Read a Form 4 Insider Trading Filing.

as of ranking 6×3read in context →
Share of Form 4 lines booked as indirect ownership, by transaction code — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
codeline_countindirect_pct
P: purchase8265850.4
S: sale36103544.7
A: grant3079724.7
M: exercise2630955.9
F: tax withholding1487381.2
G: gift2107845.5
Rows × columns
6 × 3
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Share of Form 4 lines booked as indirect ownership, by transaction code, derived from the stored result.
ColumnTypeRangeNotes
code text 6 distinct values (A: grant, F: tax withholding, G: gift…)
line_count number 21,078 to 361,035 count
indirect_pct number 1.2 to 50.4 percent

Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.

the exact SQL behind every number
SELECT
    multiIf(
        transaction_code = 'P', 'P: purchase',
        transaction_code = 'S', 'S: sale',
        transaction_code = 'A', 'A: grant',
        transaction_code = 'M', 'M: exercise',
        transaction_code = 'F', 'F: tax withholding',
        'G: gift')                                                             AS code,
    count()                                                                    AS line_count,
    round(100 * countIf(upper(direct_or_indirect) LIKE 'I%') / count(), 1)     AS indirect_pct
FROM global_markets.stocks_form4
WHERE filing_date >= toDate('2025-08-01')
  AND filing_date <  toDate('2026-08-01')
  AND form_type = '4'
  AND transaction_code IN ('P', 'S', 'A', 'M', 'F', 'G')
  AND (upper(direct_or_indirect) LIKE 'D%' OR upper(direct_or_indirect) LIKE 'I%')
GROUP BY code
ORDER BY multiIf(
    code LIKE 'P%', 1,
    code LIKE 'S%', 2,
    code LIKE 'A%', 3,
    code LIKE 'M%', 4,
    code LIKE 'F%', 5,
    6)

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisHow to Read a Form 4 Insider Trading Filing
Share of reported Form 4 lines by transaction code, Aug 2025 to Jul 2026 ranking 7×3 Calendar days from transaction date to Form 4 filing date ranking 6×3 Form 4 filings containing a sale: with an exercise on the same document, or without series 12×4 Original Form 4 documents and Form 4/A amendments, by filing month series 12×4 The most common SEC form types: share of all EDGAR filings, trailing 12 months ranking 12×2 Where the well-known SEC forms rank: filings and overall rank, trailing 12 months ranking 8×4 See all 2,170 queries →