What Does Cross Mean in Trading? 4 Meanings
In trading, cross means four things: the opening and closing cross auctions, a broker's cross trade, a crossed market, and chart crosses. Here is each one.
What does cross mean in trading? Four different things, and the right one depends on where you heard it. On an exchange, the cross is the opening or closing auction, a single price that clears every eligible order at once. At a brokerage or a fund company, a cross trade is one firm pairing a buy and a sell from two of its own accounts without sending either order to the market. On a quote screen, a crossed market is a bid sitting above an ask. On a price chart, a golden cross or death cross is one moving average passing through another. If the word came up in a story about the 4:00 p.m. close, you want the auction. If it came from a fund prospectus or a broker disclosure, you want the cross trade, which gets the most room below.
What is the opening cross and the closing cross?
Nasdaq calls its opening and closing auctions the Opening Cross and the Closing Cross. The NYSE says auction, and the mechanism is the same. Through the morning, buy and sell orders marked for the open accumulate in a separate book. At 9:30 a.m. ET the exchange computes the one price at which the most shares pair off, fills every matched order at that price, and prints the whole batch to the consolidated tape (the public record of every US stock trade) as a single trade. The opening auction sets the day's official open. The closing auction at 4:00 p.m. sets the official close that index funds and option settlements key off. A newly listed stock's first trade is the same kind of cross, run once; our page on how the IPO opening price is set walks through that version.
Auction prints are easy to spot on the tape. They land in the first and last minute of the regular session and dwarf any ordinary minute. The panel below averages AAPL's volume at seven clock minutes across every June 2026 session.
| et_time | avg_million_shares | ratio_to_heaviest | sessions |
|---|---|---|---|
| 09:30 | 1.49 | 1 | 21 |
| 09:31 | 0.3 | 0.2 | 21 |
| 10:00 | 0.17 | 0.11 | 21 |
| 12:00 | 0.08 | 0.05 | 21 |
| 15:00 | 0.08 | 0.06 | 21 |
| 15:59 | 1.31 | 0.88 | 21 |
| 16:00 | 0.99 | 0.66 | 21 |
The exact SQL behind every number
SELECT
et_time,
round(toFloat64(avg(volume)) / 1e6, 2) AS avg_million_shares,
round(toFloat64(avg(volume)) / max(toFloat64(avg(volume))) OVER (), 2) AS ratio_to_heaviest,
count() AS sessions
FROM
(
SELECT
formatDateTime(toTimeZone(window_start, 'America/New_York'), '%H:%i') AS et_time,
volume
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'AAPL'
AND window_start >= toDateTime('2026-06-01 04:00:00', 'UTC')
AND window_start < toDateTime('2026-07-01 04:00:00', 'UTC')
)
WHERE et_time IN ('09:30', '09:31', '10:00', '12:00', '15:00', '15:59', '16:00')
GROUP BY et_time
ORDER BY et_timeThe 09:30 minute, which holds the opening cross print, averaged 1.49 million shares over 21 sessions. The 16:00 minute, which holds the closing cross print, averaged 0.99 million over 21 sessions. The ratio column scales every row to the heaviest of the seven minutes, and the closing minute reads 0.66 on that scale. The midday minutes in between barely register on the same axis. That is what a cross looks like on the tape: one print, at one price, landing inside a single clock minute.
What is a cross trade?
A cross trade is a single firm matching a buy order and a sell order in the same security from two different accounts it handles, rather than routing both to an exchange book. When a broker does it for two customers it is an agency cross: the broker acts for both clients and takes neither side into its own inventory. That separates it from a principal trade, where the broker fills a customer out of its own account. A fund manager can also cross between two funds it runs, moving shares from a fund that needs to sell into a sibling fund that needs to buy.
When is a cross trade allowed?
A cross is legal, and common, under conditions that keep it from becoming a private deal at a private price.
- It must be reported. On an exchange, the broker enters a cross order type; the NYSE and Nasdaq each offer one, and the options exchanges have their own. Off-exchange, the print is reported through a FINRA trade reporting facility within ten seconds of execution. Either way it reaches the consolidated tape like any other trade.
- It must be priced at or inside the national best bid and offer (the NBBO, the highest bid and lowest ask across all exchanges). Regulation NMS forbids executing through a protected quote on another exchange, and a cross printed outside the NBBO would do exactly that. Many crosses print at the midpoint, splitting the spread between the two clients.
- The broker still owes best execution to both sides and cannot favor one client over the other.
- For mutual funds, Rule 17a-7 under the Investment Company Act of 1940 permits a fund to trade directly with an affiliated fund at the independent current market price, with no brokerage commission and with the fund's board reviewing the trades. Investment advisers who cross between separately managed accounts disclose the practice in their Form ADV and, in many cases, obtain client consent first.
How does a cross trade appear on the tape?
Every trade on the consolidated tape carries one or more condition codes, small integers that describe how the print happened. A cross has its own. The panel lists the equities condition codes whose names mention a cross, an opening, a closing, or an official print, with the cross code pinned to the first row.
| code_id | code_name | is_cross_code | code_type | what_it_marks |
|---|---|---|---|---|
| 9 | Cross Trade | 1 | sale_condition | |
| 84 | Crossed Market | 1 | market_condition | |
| 8 | Closing Prints | 0 | sale_condition | |
| 13 | Opening | 0 | quote_condition | |
| 14 | Closing | 0 | quote_condition | |
| 15 | Market Center Official Close | 0 | sale_condition | |
| 16 | Market Center Official Open | 0 | sale_condition | |
| 17 | Market Center Opening Trade | 0 | sale_condition | |
| 18 | Market Center Reopening Trade | 0 | sale_condition | |
| 19 | Market Center Closing Trade | 0 | sale_condition | |
| 25 | Opening Prints | 0 | sale_condition | |
| 28 | Re-Opening Prints | 0 | sale_condition | |
| 55 | Opening Reopening Trade Detail | 0 | sale_condition |
The exact SQL behind every number
SELECT
id AS code_id,
any(name) AS code_name,
toUInt8(max(lower(name) LIKE '%cross%')) AS is_cross_code,
any(type) AS code_type,
any(description) AS what_it_marks
FROM global_markets.stocks_condition_codes
WHERE asset_class = 'stocks'
AND (lower(name) LIKE '%cross%'
OR lower(name) LIKE '%opening%'
OR lower(name) LIKE '%closing%'
OR lower(name) LIKE '%official%')
GROUP BY id
ORDER BY is_cross_code DESC, code_idCode 9, named Cross Trade, is the tag the feed attaches to a cross print; the panel returns 13 codes in this family. When a trade feed lets you filter by condition, this is the code that separates crosses from ordinary continuous-market prints. The print is public and it is labeled; no reader of the tape mistakes it for continuous trading.
Why do fund families and index rebalances use crosses?
Two reasons: the spread and the footprint. A buyer and a seller who meet in the open market each give up half the bid-ask spread; crossed at the midpoint, neither does. A large order worked through the order book also moves the price against itself as it fills. A cross moves nothing; neither side ever touches the book. Index rebalance days concentrate both effects. When an index adds or drops a stock, every fund tracking that index needs the same trades at the same closing price. The closing cross is built for that, and a manager whose funds sit on both sides of a rebalance can pair them internally at the closing price under Rule 17a-7. Brokers see the same pattern on rebalance days: one client selling a deleted name and another buying it are crossed against each other, with the print reported to the tape and the closing price serving as the reference.
What is a crossed market?
A crossed market is a quote in which the best bid is higher than the best ask. Its cousin, a locked market, is a bid equal to the ask. Inside one exchange's order book a cross cannot persist: a buy order at or above the best ask executes immediately. Across the sixteen or so US stock exchanges, though, quotes update at slightly different times, and the NBBO can briefly show a bid on one venue above an ask on another. These states cluster at the open, when order books are being rebuilt. Regulation NMS asks exchanges to avoid displaying locking or crossing quotes, and they resolve within milliseconds. The full mechanics are in locked and crossed markets. The panel below measures how rare the state is, using AAPL's quote updates over the first five minutes of the June 18, 2026 session.
| quote_state | quotes | share_pct | all_quotes_thousands |
|---|---|---|---|
| normal (bid below ask) | 38410 | 99.595 | 38.6 |
| locked (bid equals ask) | 102 | 0.264 | 38.6 |
| crossed (bid above ask) | 54 | 0.14 | 38.6 |
The exact SQL behind every number
SELECT
multiIf(bid_price > ask_price, 'crossed (bid above ask)',
bid_price = ask_price, 'locked (bid equals ask)',
'normal (bid below ask)') AS quote_state,
count() AS quotes,
round(100 * count() / sum(count()) OVER (), 3) AS share_pct,
round(sum(count()) OVER () / 1000, 1) AS all_quotes_thousands
FROM global_markets.cache_stocks_quotes
WHERE ticker = 'AAPL'
AND sip_timestamp >= toDateTime('2026-06-18 13:30:00', 'UTC')
AND sip_timestamp < toDateTime('2026-06-18 13:35:00', 'UTC')
AND bid_price > 0
AND ask_price > 0
GROUP BY quote_state
ORDER BY quotes DESCAAPL's NBBO updated 38.6 thousand times in those five minutes, and 99.595% of those updates were in the normal (bid below ask) state. The rest were locked or crossed, and the table shows how thin that remainder is even in the busiest five minutes of the day.
What does a cross mean on a price chart?
On a price chart, a cross is one moving average (the average closing price over a fixed number of past sessions) passing through another. The common pair is the 50-day and the 200-day. When the 50-day rises up through the 200-day the pattern is called a golden cross; when it falls down through it, a death cross. Both describe what already happened to the price, computed from closes that are weeks old, and they appear well after the move they summarize. Whether the label carries any forward information is a separate question, and one we measured in can a death cross be bullish.
FAQ
What is a cross in stock trading?
A cross is a trade in which two orders meet outside the normal continuous order book: either a broker pairs two of its own clients' orders (a cross trade), or an exchange pairs every opening or closing order at one price (the opening or closing cross). The context tells you which one is meant.
Is a cross trade legal?
Yes, provided it is reported to the consolidated tape and priced at or inside the national best bid and offer, with the broker owing best execution to both clients. Mutual fund cross trades additionally follow Rule 17a-7, which requires the independent current market price and no commission.
What is the difference between a crossed market and a cross trade?
A crossed market is a quote condition: the best bid sits above the best ask, usually for milliseconds around the open. A cross trade is an execution: one firm matching two of its own orders and printing the result to the tape. The words share a root and nothing else.
What is the Nasdaq closing cross?
The Nasdaq Closing Cross is the 4:00 p.m. ET auction that sets the official closing price of every Nasdaq-listed stock. Orders marked for the close accumulate through the afternoon, and at the bell Nasdaq matches them at the single price that pairs off the most shares. The NYSE runs the same kind of auction and calls it the closing auction.
Every panel here ships with the exact SQL beneath it. To pull the auction minutes or the quote states for a different ticker or date, ask the question in plain English on the Strasmore terminal.