Is Cross Trading Legal? Rules by Venue
Is cross trading legal? Yes, by rule: Reg NMS for exchanges, FINRA 5320 for brokers, Rule 17a-7 for funds, CME Rule 539 in futures. Plus the wash-trade line.
Is cross trading legal? In the United States, yes, provided the cross runs through a channel the rulebook sanctions: an exchange's opening or closing cross, a broker's agency cross reported under FINRA rules, a fund-to-fund cross under Investment Company Act Rule 17a-7, or a futures block trade under CME rules. The same matched trade turns illegal when it skips those channels, or when nobody ends up holding a real position (a wash trade). Each venue draws that line in a slightly different place, so the answer below goes rulebook by rulebook.
What counts as a cross trade?
A cross is a single trade in which one party, either an exchange's matching engine or a broker, pairs a buyer and a seller directly instead of letting two orders find each other in the open book. The exchange version is an auction: the opening and closing crosses gather every eligible order for one moment and print all of them at a single price. The broker version is an agency cross: a firm holds a buy order from one client and a sell order from another in the same stock and matches them in-house. Our guide to what "cross" means in trading covers the vocabulary; this post covers the legal question.
Crosses are ordinary enough that the consolidated tape carries a flag for them. The list below comes from the same reference table used to label every print.
| asset_class | id | condition_name | code_type |
|---|---|---|---|
| stocks | 9 | Cross Trade | sale_condition |
| stocks | 84 | Crossed Market | market_condition |
| options | 229 | Single Leg Cross Non ISO | sale_condition |
| options | 230 | Single Leg Cross ISO | sale_condition |
| options | 234 | Multi Leg Cross | sale_condition |
| options | 241 | Stock Options Cross | sale_condition |
The exact SQL behind every number
SELECT
asset_class,
id,
any(name) AS condition_name,
any(type) AS code_type
FROM global_markets.stocks_condition_codes
WHERE lower(name) LIKE '%cross%'
GROUP BY asset_class, id
ORDER BY asset_class DESC, idThe table holds 6 codes with the word cross in the name. On the equities tape the flag is called Cross Trade; the options tape carries its own variants for single-leg and multi-leg crosses. A flagged cross is a disclosed, reported trade, and that is the first clue to the legal answer: a cross is lawful when it is exposed and reported, and suspect when it is neither.
Are exchange crosses legal?
Yes. The opening and closing crosses are the exchanges' own matching processes, written into their rulebooks (Nasdaq Rules 4752 and 4754, NYSE Rule 7.35). Every participant can enter orders, and the indicative price and imbalance are published before the print. The final price is one number for everyone. Regulation NMS Rule 611, the order-protection rule, bars a trading center from executing at a price worse than a protected quotation on another market; Rule 611(b)(3) exempts a single-priced opening, reopening or closing auction from that bar. The chart below measures how much of SPY's daily volume printed in the 9:30 a.m. bar (which holds the opening cross) and the 4:00 p.m. bar (which holds the closing cross) across June 2026.
Across 21 sessions the two lines put a number on the auctions' share each day. On June 1 the 4:00 p.m. bar carried 0.39% of SPY's full-day volume against 1.59% for the 9:30 a.m. bar; on June 30 the closing figure read 2.06%. Whatever the size, the legality of that print rests on the process: public and single-priced, with every order competing.
Single stocks and the index ETF lean on the closing cross to different degrees. The next panel takes one session, June 10, 2026, and compares five household names.
| ticker | opening_cross_pct | closing_cross_pct |
|---|---|---|
| MSFT | 2.84 | 2.65 |
| AAPL | 2.16 | 1.06 |
| SPY | 0.91 | 0.84 |
| NVDA | 1.76 | 0.25 |
| KO | 4.27 | 0.18 |
The exact SQL behind every number
SELECT
ticker,
round(100 * toFloat64(sumIf(volume, et_min = 570)) / toFloat64(sum(volume)), 2) AS opening_cross_pct,
round(100 * toFloat64(sumIf(volume, et_min = 960)) / toFloat64(sum(volume)), 2) AS closing_cross_pct
FROM
(
SELECT
ticker,
volume,
toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York')) AS et_min
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'AAPL', 'MSFT', 'NVDA', 'KO')
AND window_start >= toDateTime('2026-06-10 00:00:00', 'UTC')
AND window_start < toDateTime('2026-06-11 05:00:00', 'UTC')
)
GROUP BY ticker
HAVING sum(volume) > 0
ORDER BY closing_cross_pct DESCOn that day MSFT printed the largest closing-bar share of the five at 2.65% of its volume, and KO the smallest at 0.18%. All of it is a legal cross: the exchange ran the match and the price was public. The Nasdaq opening cross guide walks through the mechanics of that first print of the day.
Can a broker cross two customer orders?
Yes, under conditions. A broker-dealer that matches a buy from one client against a sell from another executes an agency cross, and four rules govern it. Reg NMS Rule 611 still applies: the cross price cannot trade through a protected quote unless an exception fits (benchmark trades and qualified contingent trades are the common ones). FINRA Rule 5310, the best-execution rule, requires the firm to use reasonable diligence so each client's fill is as favorable as prevailing conditions allow; a convenient in-house match does not excuse a worse price. FINRA Rule 5320, the Manning rule, bars a firm holding a customer order from trading for its own account at a price that would satisfy that order without immediately filling the customer at the same or better price, so a firm cannot quietly step between two clients and keep the spread. Rule 5320 carries a large-order exception: for orders of at least 10,000 shares and $100,000 in value, and for institutional accounts, the firm may negotiate different terms if it discloses them clearly and the client can opt back into protection. Fourth, the cross must be reported to a FINRA trade reporting facility so it shows on the tape like any other print.
On the NYSE floor, Rule 76 adds a step: a floor broker holding both sides must first bid and offer publicly, and anyone in the crowd can take either side before the broker crosses what remains. Negotiated size usually travels this way; a block trade is the upstairs form of a cross and lives under the same trade-through and reporting rules. One day of AAPL prints, bucketed by size, shows why that channel exists.
| bucket | print_count | prints_pct | volume_pct |
|---|---|---|---|
| 1. under 100 (odd lot) | 894807 | 90.06 | 30.53 |
| 2. 100 to 999 | 96940 | 9.76 | 27.43 |
| 3. 1,000 to 9,999 | 1756 | 0.18 | 5.77 |
| 4. 10,000 shares and up | 88 | 0.01 | 36.27 |
The exact SQL behind every number
SELECT
bucket,
print_count,
round(100 * print_count / sum(print_count) OVER (), 2) AS prints_pct,
round(100 * shares / sum(shares) OVER (), 2) AS volume_pct
FROM
(
SELECT
multiIf(size >= 10000, '4. 10,000 shares and up',
size >= 1000, '3. 1,000 to 9,999',
size >= 100, '2. 100 to 999',
'1. under 100 (odd lot)') AS bucket,
count() AS print_count,
toFloat64(sum(size)) AS shares
FROM global_markets.stocks_trades
WHERE ticker = 'AAPL'
AND sip_timestamp >= toDateTime('2026-06-10 08:00:00', 'UTC')
AND sip_timestamp < toDateTime('2026-06-11 00:00:00', 'UTC')
GROUP BY bucket
)
ORDER BY bucketOn June 10, 2026, AAPL prints of 10,000 shares or more made up 0.01% of all prints yet 36.27% of the shares that changed hands, across 88 trades. Odd lots under 100 shares were 90.06% of prints. Size concentrates in a handful of trades, and the rules above govern how those few trades may be matched away from the open book.
Can a fund or adviser cross trades between clients?
Only under specific exemptions. Investment Company Act Section 17(a) prohibits a registered fund from buying from or selling to an affiliate, and two funds run by the same adviser count as affiliates of each other. Rule 17a-7 exempts the cross when every condition holds: the security has readily available market quotations; the price is the "independent current market price", which for a listed stock means the last sale on the consolidated tape or the average of the best independent bid and offer; no brokerage commission is paid beyond customary transfer fees; the trade fits each fund's stated policy; and the fund's board, with a majority of independent directors, has adopted written procedures and reviews every cross at least quarterly. Miss one condition and the cross is a prohibited affiliated transaction.
For advisers, Section 206(3) of the Investment Advisers Act governs. When the adviser or an affiliate takes the other side as principal, it must disclose that in writing and obtain the client's consent before each trade completes. When the adviser acts as broker for both clients, an agency cross, Rule 206(3)-2 permits a blanket prospective consent, with a written confirmation for every trade and an annual statement listing them all. Pension plans under ERISA face a further layer: Section 408(b)(19) permits cross trades only for plans holding at least $100 million in assets, at the independent current market price, under written authorization.
Is cross trading legal in futures?
Mostly not, with named exceptions. CFTC Regulation 1.38 requires futures to be executed "openly and competitively" on the exchange, with noncompetitive trades allowed only under exchange rules the CFTC has accepted. CME Rule 539.A puts it plainly: no one may pre-arrange or pre-negotiate a purchase or sale, or execute one noncompetitively. Rule 539.B carves out two channels, block trades under Rule 526 (privately negotiated, above a minimum size, reported to the exchange within minutes) and Exchange for Related Positions under Rule 538 (a futures leg exchanged against a related cash or OTC position). Rule 539.C adds a path on Globex: pre-execution communications are permitted when the counterparty consents, and the resulting order must then pass through the request-for-cross protocol, where it sits exposed to the whole market for a set number of seconds and any participant can trade against either side before the cross matches. Skipping that exposure turns a lawful cross into a prohibited pre-arranged trade.
CME Rule 534 handles the other failure mode. It bars buy and sell orders in the same product and expiration month (and the same strike, for options) where the trader knows, or has reason to know, that the purpose is to avoid taking a bona fide position exposed to market risk. Orders for different accounts under common beneficial ownership, entered with intent to negate market risk or price competition, fall under the same prohibition. Section 4c(a) of the Commodity Exchange Act makes the wash sale a federal offense on top of the exchange rule.
Where a cross becomes illegal
Across every venue the line comes down to two tests. First, was the trade exposed? An exchange auction, a broker cross that respects the protected quote and customer priority, a block reported on time, a Globex cross that sat in the request-for-cross window: each gave the market a chance to compete. A trade arranged in private and printed with no exposure fails that test, and in futures that alone violates Rule 539. Second, did beneficial ownership change? Exchange Act Section 9(a)(1) prohibits wash sales and matched orders entered to create a false appearance of activity, and FINRA Rule 6140(b) applies the same ban to member firms. CME Rule 534 covers futures and options on futures. A cross with the same beneficial owner on both sides, or with two accounts that agreed in advance to offset each other, is a wash trade whichever venue printed it. Our post on self-match prevention and wash trades covers the exchange tools built to keep a firm from crossing itself by accident.
FAQ
Is cross trading illegal in the US?
No. Cross trading is legal when it runs through a sanctioned channel: an exchange auction, an agency cross that respects Reg NMS and FINRA rules, a fund cross under Rule 17a-7, or a futures block under CME Rule 526. It becomes illegal when it is pre-arranged outside those channels or when it is a wash trade.
What is the difference between a cross trade and a wash trade?
A cross trade matches two different beneficial owners, a real buyer and a real seller, through one intermediary. A wash trade has the same beneficial owner (or accounts acting together) on both sides, so no ownership changes hands. The first is a reported trade; the second is prohibited under Exchange Act Section 9(a)(1) and CME Rule 534.
Can a mutual fund cross trades with another fund from the same manager?
Yes, under Investment Company Act Rule 17a-7. The trade must print at the independent current market price, carry no commission, fit both funds' policies, and follow board-approved procedures that are reviewed at least quarterly.
Is cross trading legal in futures?
Only through named exceptions. CME Rule 539 bars pre-arranged trades. Two exceptions sit in Rule 539.B (block trades under Rule 526 and EFRPs under Rule 538) and a further one in Rule 539.C, the Globex request-for-cross protocol that follows a consented pre-execution communication.
Does a broker need my permission to cross my order?
For a plain agency cross between two customers, no separate consent is required; the broker owes best execution under FINRA Rule 5310 and cannot trade ahead of the order under Rule 5320. An investment adviser crossing your account against another client or against its own book needs consent under Advisers Act Section 206(3).
Every panel above ships with the SQL that produced it. To measure the closing cross for any ticker and date, or to bucket a day's prints by size, ask the question in plain English on the Strasmore terminal.