OTC Markets Tiers and SEC Rule 15c2-11
OTC markets tiers explained, and how amended SEC Rule 15c2-11 moved non-reporting stocks onto the Expert Market, where retail buyers often cannot buy at all.
OTC markets tiers sort over-the-counter stocks by how much current information the issuer publishes, and amended SEC Rule 15c2-11 decides whether a broker-dealer may publish a quote for one at all. Since September 28, 2021, publishing a quotation requires current issuer information to be publicly available. Securities without it sit on the Expert Market, where quotes are displayed only to sophisticated and institutional investors. That is the machinery behind a brokerage screen that lets a holder sell and will not let anyone buy.
The OTC markets tier ladder
The tiers are labels applied by OTC Markets Group, the venue operator. They rank disclosure rather than company quality, and an issuer slides between them as its filings age. From the top:
- OTCQX. The senior tier. Issuers meet financial and governance standards and are vetted by an outside sponsor. Shell companies and penny-priced issuers are excluded.
- OTCQB. The venture tier. Issuers stay current in reporting and hold a minimum bid price, and they re-verify their company profile every year.
- OTCID Basic Market. The entry tier since July 1, 2025, when it replaced the older Pink Current designation. Issuers publish baseline company information plus a management certification.
- Pink Limited. Disclosure exists, but it has aged past the window the venue accepts.
- Expert Market. No current public information, and no public quotation.
"Current information" carries a specific meaning here. For an SEC-reporting company it is the periodic cycle covered in the most common SEC filings, the annual 10-K and the quarterly 10-Q. A company that never registered with the SEC can still be current by publishing equivalent financial and company data through the venue's alternative reporting standard. Both routes count. Silence does not.
What is SEC Rule 15c2-11?
Rule 15c2-11 is a broker-dealer rule under the Securities Exchange Act of 1934, on the books since 1971. It governs quotations: the bids and offers a broker-dealer publishes in a quotation medium. The SEC adopted a rewrite of it on September 16, 2020 and set the compliance date at September 28, 2021.
The old version carried a loophole known as the piggyback exception. Once one broker-dealer had published a quote and the security traded with some regularity, every other broker-dealer could piggyback on that quotation indefinitely, with nobody ever revisiting whether the issuer still published anything. The amended rule conditions that exception on the issuer's current information being publicly available. Four points from the text matter to a retail holder:
- The rule binds broker-dealers, not issuers. Nothing in it compels a company to publish. The consequence lands on whether anyone may quote it.
- The information standard is a defined list: issuer name and address, officers and directors, share counts, and financial statements, published within a set staleness window.
- Unsolicited customer orders sit outside the rule. A broker may execute an order a customer brought to it unprompted.
- The rule reaches published quotations in a quotation medium, which includes the bid and ask a retail app draws onto its order ticket.
One consequence surprises people: none of this stops trades from printing. Trades still print in names that lost their public quotation, since an unsolicited sell order still crosses and still lands on the tape. A trade count is not a quote count, and that distinction is the whole hinge of the rule.
Measuring the OTC side of that from price history is its own problem. Trade reports in OTC securities route through a FINRA facility rather than an exchange tape, and OTC coverage in commercial price data is thin where listed coverage is complete. The panel below counts distinct exchange-listed symbols printing at least one trade in each month of 2021 and 2022, the window that straddles the compliance date. It is the listed side only, and every panel on this page carries that same limit.
The exact SQL behind every number
SELECT
formatDateTime(toStartOfMonth(date), '%Y-%m') AS month,
countDistinctIf(ticker, ifNull(otc, 0) = 0) AS listed_symbols_traded
FROM global_markets.stocks_daily_aggs
WHERE date >= '2021-01-01'
AND date < '2023-01-01'
AND ticker NOT IN ('SPCX')
GROUP BY month
ORDER BY monthIn 2021-01 the tape carried trades in 9759 distinct exchange-listed symbols, and by 2022-12 the count read 12086. Rule 15c2-11 reached published quotations in securities without current information, most of them OTC, and it neither delisted a security nor stopped one from trading.
Why can't I buy this stock? The Expert Market
OTC Markets Group opened the Expert Market in September 2021 as the destination for securities that may no longer be publicly quoted. Quotes there are displayed to broker-dealers and to investors the venue classifies as sophisticated or professional. A retail screen shows no bid and no ask.
What a holder actually meets, in order:
- The buy side of the order ticket is rejected or absent entirely.
- A sell order is accepted only as unsolicited, meaning the broker neither recommended nor solicited it. Some brokers decline even that.
- The position may display a stale price or none at all, since no public quotation exists to mark it against.
- The security is typically one of the non-marginable securities a broker assigns zero loan value.
Spreads behave the way you would expect on a venue with few quoting firms and no public reference price: the gap between what a buyer will pay and what a seller will take widens sharply. How market makers make money covers why a quoting firm charges more when the book is thin and the float is small.
How much disclosure sits behind a symbol?
Rule 15c2-11 keys on current information, and the cleanest public proxy is whether the issuer filed a periodic report with the SEC in the trailing year. The panel below runs that test across every symbol that printed an exchange-listed trade in June 2026.
The exact SQL behind every number
WITH
traded AS
(
SELECT DISTINCT ticker
FROM global_markets.stocks_daily_aggs
WHERE date >= '2026-06-01'
AND date < '2026-07-01'
AND ifNull(otc, 0) = 0
AND ticker NOT IN ('SPCX')
),
filers AS
(
SELECT DISTINCT ticker
FROM global_markets.stocks_sec_edgar_index
WHERE filing_date >= '2025-06-01'
AND filing_date < '2026-07-01'
AND form_type IN ('10-K', '10-Q', '20-F', '40-F')
AND ticker != ''
)
SELECT
count() AS symbols_traded,
countIf(ifNull(f.ticker, '') != '') AS symbols_with_filing,
round(100 * countIf(ifNull(f.ticker, '') != '') / count(), 1) AS pct_with_recent_filing
FROM traded AS t
LEFT JOIN filers AS f ON f.ticker = t.tickerOf the 13024 symbols that printed an exchange-listed trade in June 2026, 5434 matched a 10-K, 10-Q, 20-F or 40-F filed in the prior twelve months, or 41.7% of them. Take that as a floor rather than a verdict. Exchange-traded funds and trusts do not file 10-Ks, and a filing index keyed on ticker skips filers whose ticker field sits empty.
The same test applied to OTC symbols understates disclosure by more, not less. An issuer current under the venue's alternative reporting standard publishes real financials without ever filing with the SEC, and none of that work appears in an EDGAR search. The tier label a symbol carries is a faster read on current information than an EDGAR search is.
How thin does trading get?
Disclosure is one axis. Liquidity is the other, and it is the one a seller feels on the day. The panel below buckets every exchange-listed symbol that traded in June 2026 by the number of sessions it printed on, out of the 21 that month held.
The exact SQL behind every number
WITH
per_symbol AS
(
SELECT
ticker,
count() AS sessions_traded
FROM global_markets.stocks_daily_aggs
WHERE date >= '2026-06-01'
AND date < '2026-07-01'
AND ifNull(otc, 0) = 0
AND ticker NOT IN ('SPCX')
GROUP BY ticker
),
totals AS
(
SELECT count() AS total_listed
FROM per_symbol
),
bucketed AS
(
SELECT
multiIf(sessions_traded <= 3, '01 to 03 sessions',
sessions_traded <= 7, '04 to 07 sessions',
sessions_traded <= 12, '08 to 12 sessions',
sessions_traded <= 17, '13 to 17 sessions',
'18 or more sessions') AS sessions_bucket,
count() AS listed_symbols
FROM per_symbol
GROUP BY sessions_bucket
)
SELECT
b.sessions_bucket AS sessions_bucket,
round(100 * b.listed_symbols / t.total_listed, 1) AS listed_share_pct
FROM bucketed AS b
CROSS JOIN totals AS t
ORDER BY b.sessions_bucket90.6% of exchange-listed symbols printed on 18 sessions or more that month, and 1.2% printed on three sessions or fewer. That is the liquid end of the market. OTC names are not on this panel at all, the venue they trade on has few quoting firms, and on the Expert Market there is no public quotation to reference. A holder who needs an exit on one particular afternoon is negotiating with whoever happens to be present.
Delisting is the usual road onto these tiers
Most companies do not choose the OTC market. They arrive from an exchange, after failing a continued-listing standard on price, market value, public float, or filing delinquency. A delisting ends the exchange listing. It does not end trading, and the security usually continues over the counter the following session, landing on whichever tier its disclosure supports.
The symbol frequently changes on the way across. Ticker symbols break datasets when they are reassigned or re-suffixed, and a delisting is one of the most common moments for it. Counting those crossings from price history is harder than it looks, which is why this page puts no number on them. The clean case is a symbol whose exchange prints stop and whose OTC prints start under the same string. A company that emerges from a reorganization under a brand new symbol never appears in that test, a symbol that picks up a fifth-letter suffix reads as two securities, and a symbol later reassigned to an unrelated company reads as one continuous history.
FAQ
Why can't I buy a stock on the Expert Market?
Since September 28, 2021, amended SEC Rule 15c2-11 has barred a broker-dealer from publishing a public quotation for a security whose issuer does not make current information publicly available. With no public quote on the screen, most brokers accept only unsolicited sell orders in the security and block buy orders outright.
What is the difference between OTCQX, OTCQB and OTCID?
They are disclosure tiers operated by OTC Markets Group. OTCQX sets the highest financial and governance bar and requires an outside sponsor. OTCQB is the venture tier, with annual profile verification and a minimum bid price. OTCID Basic Market, which replaced Pink Current on July 1, 2025, is the entry tier for issuers publishing baseline current information.
Did the SEC delist these stocks?
No. Rule 15c2-11 is a broker-dealer quoting rule. The SEC did not deregister or delist the affected securities, and the shares still exist and still change hands through unsolicited orders. What ended was the public quotation.
Can a company get its public quotation back?
Yes. An issuer that publishes the required current information, and finds a broker-dealer willing to file a Form 211 with FINRA to initiate the quote, can be publicly quoted again and can climb back up the tier ladder.
Are OTC stocks marginable?
Many are not. Brokers commonly assign zero loan value to low-priced and thinly quoted OTC securities, and an Expert Market name has no public quote to mark a position against, so it tends to be held in a cash account only.
Every panel above carries the exact SQL underneath the table. To count the tape for a different month, or to check how many sessions a given symbol actually printed in, ask the question in plain English on the Strasmore terminal.