AtsDegrossAuctionSchedule
Published by the degrossing execution engine at start of day; each row's state updates as the sequence runs. Clients consume this — the sequence is never hard-coded client-side. Sequence: Trial 9:55 CST, then Real auctions 10:00 / 10:05 / 10:10 / 10:15 CST, 3 expiries each.
METADATA
| Attribute | Value |
|---|---|
| Topic | 2270-execution-engine |
| MLink Token | ClientTrading |
| Product | SRTrade |
| accessType | SELECT |
| MLink Endpoint | MLink-Live |
Table Definition
| Field | Type | Key | Default Value | Comment |
|---|---|---|---|---|
| auctionNumber | INT | PRI | 0 | sequence index 1 Trial 25 Real |
| auctionKind | enum - DegrossAuctionKind | 'None' | Trial full solve published results no execution | |
| tradeDate | DATE | '1900-01-01' | ||
| scheduledDttm | DATETIME(6) | '1900-01-01 00:00:00.000000' | todays scheduled start the CST schedule as an absolute datetime | |
| auctionState | enum - DegrossAuctionState | 'None' | ||
| completedDttm | DATETIME(6) | '1900-01-01 00:00:00.000000' | set when auctionStateDone | |
| timestamp | DATETIME(6) | '1900-01-01 00:00:00.000000' |
PRIMARY KEY DEFINITION (Unique)
| Field | Sequence |
|---|---|
| auctionNumber | 1 |
SELECT TABLE EXAMPLE QUERY
SELECT *
FROM `SRTrade`.`MsgAtsDegrossAuctionSchedule`
WHERE
/* Replace with a INT */
`auctionNumber` = 5;
Doc Columns Query
SELECT * FROM SRTrade.doccolumns WHERE TABLE_NAME='AtsDegrossAuctionSchedule' ORDER BY ordinal_position ASC;