SEC Form ATS-N: Alternative Trading System Disclosure β Engineer's Guide 2026
Building FinanceTrackDaily on the SEC EDGAR API, one of the most underappreciated filings I keep running into is Form ATS-N. Most retail investors have never heard of it, yet it is the single most detailed public disclosure of how off-exchange equity trading venues β what the press loosely calls "dark pools" β actually operate. As an engineer aggregating filings for more than 3,400 US listed stocks, I have learned that ATS-N tells you things about market structure that no 10-K ever will: how an alternative trading system matches orders, who is allowed to participate, what subscription tiers exist, and how the operator handles conflicts with its own affiliated broker-dealer.
This guide walks through what Form ATS-N is, what each section discloses, where to find filings on EDGAR, and how to read one from the perspective of someone who parses these documents programmatically. It is written for engineers, market structure students, and curious investors who want to understand the off-exchange side of US equities. It is not investment advice, and I am not a registered investment adviser.
What is an Alternative Trading System?
An Alternative Trading System (ATS) is a SEC-regulated trading venue that matches buyers and sellers of securities but is not registered as a national securities exchange. Under Regulation ATS, an ATS must be operated by a broker-dealer that is a FINRA member, and it must register with the SEC by filing Form ATS (for non-NMS securities) or Form ATS-N (for NMS stocks β meaning Reg NMS-eligible US equities).
The distinction matters when you parse EDGAR. If you pull the full-text search index looking for "ATS" filings, you will see two parallel populations: traditional Form ATS filings (covering corporate debt, options, and other non-NMS instruments) and Form ATS-N filings (covering NMS stocks). Form ATS-N is the one most people mean when they talk about "dark pool disclosures," because the vast majority of off-exchange equity volume in the US flows through ATSs that file ATS-N.
Why Form ATS-N exists
The SEC adopted Rule 304 of Regulation ATS in July 2018, and Form ATS-N became required for all NMS Stock ATSs operating on or after January 7, 2019. Before that date, ATSs filed a much shorter Form ATS that did not require detailed operational disclosure. The 2018 amendment was the SEC's response to years of enforcement cases β Barclays, Credit Suisse, ITG, Pipeline, UBS β in which dark pool operators were found to have misrepresented how their venues worked to subscribers.
The fix was forced public disclosure. Form ATS-N is filed on EDGAR, indexed by EDGAR full-text search, and remains publicly available indefinitely. The SEC also has authority under Rule 304 to declare a Form ATS-N "ineffective" if disclosures are incomplete or misleading β a regulatory teeth that did not exist under the old regime.
Anatomy of a Form ATS-N filing
Form ATS-N is structured in four major parts, plus exhibits. From an engineer's perspective, the filing is a structured HTML document with predictable section headers, which makes it parseable even though the SEC does not publish a clean XBRL schema for ATS-N (unlike financial statements, which are XBRL-tagged). Here is the layout:
Part I β Identifying Information
Identifies the NMS Stock ATS, the broker-dealer operator, the CIK of the operator, business contact information, and any affiliates that participate as subscribers. This section is short but matters because it discloses corporate parents β useful when you want to map an ATS back to a parent bank or proprietary trading firm.
Part II β Activities of the Broker-Dealer Operator
This is the conflict-of-interest section. The ATS operator must describe whether its own trading desks (proprietary, market making, or principal trading) interact with the ATS, whether smart order routers from affiliated entities send orders into the venue, and whether affiliated personnel have access to subscriber order information. Reading Part II is the fastest way to understand the operator's economic incentives.
Part III β Activities of the ATS
The longest and most technical section. It covers:
- Subscriber types β who can participate (broker-dealers, institutional buy-side firms, retail wholesalers, etc.) and on what terms
- Order types β every accepted order type with its parameters, including pegged orders, mid-point pegs, immediate-or-cancel, post-only, and conditional indications of interest
- Matching logic β the priority hierarchy (price-time, size-time, broker preferencing, sub-tier prioritization)
- Tiers and segmentation β many ATSs split subscribers into tiers based on order type, fill rate, or "toxicity" signals; this is where you find out whether the venue is segmenting flow
- Trading session times and outage policies
- Fees, rebates, and pricing schedules
Part IV β System Functionality
Covers connectivity (FIX protocol versions, hosting, co-location), latency commitments if any, the use of indications of interest (IOIs) and conditional orders, and post-trade reporting workflow to the FINRA Trade Reporting Facility.
Exhibits
Exhibits may include written subscriber agreements, fee schedules, and the order types documentation. These are typically uploaded as separate files attached to the filing.
Where Form ATS-N filings live on EDGAR
Form ATS-N filings are searchable on EDGAR by form type. The cleanest entry points:
If you are scraping programmatically, the EDGAR Atom feed for form type ATS-N returns the most recent filings. Each filing record exposes the filer CIK, accession number, and the URL of the primary document. From there, a simple requests + BeautifulSoup pipeline (with the required User-Agent header that EDGAR demands) gives you the raw HTML for parsing.
For my own ingestion, I respect the SEC's 10-request-per-second cap and keep a User-Agent string that identifies the project and contact email β the SEC has been publicly clear that anonymous or fake user agents will get IP-blocked. The full guidance is in the SEC's EDGAR access documentation.
Form variants: ATS-N, ATS-N/A, ATS-N/MA, ATS-N/UA, ATS-N/CA
The SEC requires different filing variants depending on the nature of the update. From an engineer's perspective these are separate form types on EDGAR and need to be ingested separately:
- ATS-N β the initial operation report filed when launching an NMS Stock ATS
- ATS-N/A β amendment (general correction)
- ATS-N/MA β material amendment, filed at least 30 calendar days before the material change takes effect
- ATS-N/UA β urgent amendment, used when a change must take effect on a shorter timeline
- ATS-N/CA β cessation of operations
If you are building a database of current ATS operations, you cannot rely on the most recent ATS-N alone. You need to apply the latest ATS-N/A and ATS-N/MA on top of it to reconstruct the current state. This is the single most common mistake I see in ATS-N parsing projects.
How many Form ATS-N filers are there?
According to FINRA's publicly maintained list of registered Alternative Trading Systems, there are roughly 30 to 35 active NMS Stock ATSs in the United States at any given time. The count drifts because operators cease and new entrants register. The well-known dark pools β those run by large bank broker-dealers, agency brokers, and a handful of independent operators β are all on that list and all have ATS-N filings on EDGAR.
The FINRA list also publishes weekly aggregate trading volume per ATS, broken out by Tier 1 (Reg NMS-listed) and Tier 2 securities. Cross-referencing the FINRA volume table with EDGAR ATS-N filings is the cleanest way to understand which venues are economically meaningful versus which exist mostly on paper.
Engineering perspective: parsing ATS-N filings
From the aggregator side, ingesting Form ATS-N is structurally different from ingesting a 10-K. There is no XBRL, no standardized financial schema, and no clean tabular data. The filing is an HTML form rendered into a long document with consistent section headers but inconsistent inner layout β some operators use tables, others use narrative paragraphs.
My approach when building FinanceTrackDaily-side tooling was to anchor on the SEC's prescribed Item numbers (Item 1, Item 2.a, Item 3.b.iv, and so on, which are dictated by the form's General Instructions). Those Item numbers appear in nearly every filing because they are required by the form itself. Splitting the document on Item headers gives you reliable sections; the messy variability is inside each section's body.
For investors who do not write code, the upshot is this: do not trust a single sentence pulled out of an ATS-N filing without reading the surrounding Item context. The same word β "subscriber," for instance β can mean different things in Part II versus Part III of the same filing.
What ATS-N tells you as an educational matter
If you are studying US equity market structure, here are the questions ATS-N can help answer:
- Does this venue allow proprietary order flow from the operator's own desk to interact with subscriber orders? (Part II)
- What is the matching priority β strict price-time, or does broker preferencing apply? (Part III)
- Are subscribers segmented into tiers based on "toxicity," size, or fill rate? (Part III)
- Does the ATS accept conditional indications of interest, and if so under what firming protocol? (Part IV)
- How does the operator handle outages and self-trade prevention?
None of these answers tell you whether a given stock is a good investment. They tell you about infrastructure. For long-term investors, that distinction is the point β ATS-N is microstructure plumbing, not a stock-picking signal.
What Form ATS-N does not tell you
This is the more useful list, because the temptation to over-read ATS-N filings is real:
- It does not disclose individual subscriber identities
- It does not show actual order flow or fill data
- It does not tell you which counterparty matched against which on a given trade
- It does not predict whether dark pool execution will be better or worse than a lit exchange for any specific order
For order-level data, the relevant filings are FINRA's TRACE and ATS volume reports, not ATS-N. ATS-N is a description of how the system works, not a record of what it did.
Common misconceptions
"Dark pools are unregulated." No β ATSs are SEC-regulated under Regulation ATS, FINRA-supervised, and subject to the same anti-fraud and market manipulation rules as exchanges. The "dark" refers to pre-trade opacity (no displayed quotes), not regulatory opacity.
"All dark pools are the same." Also no. Reading three different ATS-N filings side by side makes the differences obvious β order types, matching priority, segmentation rules, and operator-affiliate interaction policies vary substantially. That heterogeneity is part of why Form ATS-N exists.
"ATS-N filings reveal trading strategies." They do not. ATS-N describes the venue's rules, not the strategies of participants. A market participant's trading strategy is private and never filed.
Frequently asked questions
Is Form ATS-N the same as Form ATS?
No. Form ATS-N applies only to ATSs that trade NMS stocks (Reg NMS-listed US equities). Traditional Form ATS still applies to ATSs that trade non-NMS instruments such as corporate debt, municipal securities, or options. Both are public on EDGAR but the disclosure depth differs significantly.
How often do ATSs file updates?
It varies. Material changes require an ATS-N/MA filed at least 30 days before the change takes effect. Routine corrections use ATS-N/A. Some active venues file several amendments per year; others file only when launching new order types or adjusting subscriber tiers.
Can I see how much volume each ATS does?
Not from ATS-N itself. FINRA publishes weekly aggregate ATS volume data on its equity volume catalog, broken out by ATS and by Tier 1 / Tier 2 categories. That is the standard reference for ATS market share.
Do exchanges file Form ATS-N?
No. Registered national securities exchanges (NYSE, Nasdaq, Cboe BZX, IEX, etc.) file Form 1 and Rule 19b-4 rule changes, not Form ATS-N. ATS-N is exclusively for venues that operate as an alternative to a registered exchange.
If I find something concerning in an ATS-N filing, what can I do?
The SEC accepts tips and complaints through its Tips, Complaints, and Referrals portal. For market structure concerns specifically, the SEC's Division of Trading and Markets is the relevant office.
Is reading Form ATS-N useful for individual investors?
Honestly, for most individual investors who trade through a retail broker, the answer is: only if you are curious about market structure. Your broker's order routing disclosures (Rule 605 and Rule 606 reports) are more directly relevant to how your individual orders are handled. ATS-N is more interesting if you are an institutional trader, a market structure researcher, or β like me β building infrastructure that consumes EDGAR.
Where to read more
- SEC Regulation ATS-N adopting release (2018)
- SEC Division of Trading and Markets β ATS information page
- FINRA registered ATS list and weekly volume data
- SEC EDGAR access guidelines for programmatic users
Disclaimer
This article is for informational and educational purposes only and is not financial, investment, legal, or tax advice. I am an engineer who builds data aggregators on top of the SEC EDGAR system; I am not a registered investment adviser, broker-dealer, attorney, or accountant. Form ATS-N is a regulatory disclosure document and reading one does not enable you to predict the performance of any security or any trading venue. Consult a licensed financial advisor before making investment decisions. Always verify regulatory filings against the official SEC EDGAR record, which is authoritative.
Found this helpful?
Subscribe to our newsletter for more in-depth reviews and comparisons delivered to your inbox.