Type 2 data
Type 2 data is often referred to in the financial industry as "level 2" data, as it is used for level 2 quotes. Level 2 quote data comprises several price quotes per subject, coming from different market makers or traders.
Here’s a record containing type 2 data. It contains equity information (IBM stock), where there are several active market makers.
The /IBM
subject (primary key) has a secondary key of Market Maker (MM
). The record contains quote data for each of the market makers providing quotes (MM1
, MM2
, and so on). This allows a subscriber to see the full set of quotes in the market. An update to the record will always have a market maker associated with it, so only the fields with that market maker as a secondary key will be overwritten.
A typical use for type 2 data is to feed the display of a market order book that is in a tabular format:
MM (Market Maker) | BidSize | BidPrice | AskPrice | AskSize |
---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
A single field in the table can be easily updated from the record: for example, Key="MM1" AskSize="2500"
.
See also: