Skip to content

Commit 2628788

Browse files
committed
added callout
1 parent 9cecb1c commit 2628788

File tree

4 files changed

+43
-13
lines changed

4 files changed

+43
-13
lines changed

reports/llms-report.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"startedAt": "2025-12-10T19:24:50.648Z",
2+
"startedAt": "2025-12-11T21:04:08.357Z",
33
"siteBase": "https://docs.chain.link",
44
"sections": [
55
{
@@ -46,9 +46,9 @@
4646
"section": "data-streams",
4747
"pagesProcessed": 59,
4848
"outputPath": "src/content/data-streams/llms-full.txt",
49-
"bytes": 515747,
50-
"prevBytes": 477063,
51-
"deltaBytes": 38684
49+
"bytes": 516576,
50+
"prevBytes": 516531,
51+
"deltaBytes": 45
5252
},
5353
{
5454
"section": "dta-technical-standard",
@@ -123,5 +123,5 @@
123123
"deltaBytes": 0
124124
}
125125
],
126-
"finishedAt": "2025-12-10T19:24:54.534Z"
126+
"finishedAt": "2025-12-11T21:04:12.341Z"
127127
}

src/content/data-streams/llms-full.txt

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5087,9 +5087,9 @@ Chainlink Data Streams that use the RWA Advanced (v11) schema adhere to the stru
50875087
| `mid` | `int192` | DON Consensus mid-price |
50885088
| `lastSeenTimestampNs` | `uint64` | Reflects the timestamp of the last update for the **mid price only** (nanoseconds). See [Notes](#notes) below. |
50895089
| `bid` | `int192` | Median bid price |
5090-
| `bidVolume` | `int192` | Volume at bid price |
5090+
| `bidVolume` | `int192` | Volume at bid price. See [bid/ask volume note](#bidask-volume-note) below. |
50915091
| `ask` | `int192` | Median ask price |
5092-
| `askVolume` | `int192` | Volume at ask price |
5092+
| `askVolume` | `int192` | Volume at ask price. See [bid/ask volume note](#bidask-volume-note) below. |
50935093
| `lastTradedPrice` | `int192` | Last traded price |
50945094
| `marketStatus` | `uint32` | Status of the real-world equity market. <br /> Possible values: <br /> `0` (Unknown), <br /> `1` (Pre-market extended hours), <br /> `2` (Regular hours), <br /> `3` (Post-market hours), <br /> `4` (Overnight), <br /> `5` (Weekend) <br /> [More details](#market-status-values) |
50955095

@@ -5110,8 +5110,19 @@ Users should implement appropriate safeguards based on market status, such as pa
51105110

51115111
### Notes
51125112

5113+
#### Last Seen Timestamp
5114+
51135115
- **IMPORTANT**: The `lastSeenTimestampNs` field reflects the timestamp of the last update for the `mid` price only. Do not assume this timestamp applies to `bid`, `ask`, `bidVolume`, `askVolume`, or `lastTradedPrice`. Different fields may have been updated at different times.
51145116
- `lastSeenTimestampNs` helps applications detect stale data for the mid price, especially important during market transitions and holidays.
5117+
5118+
#### Bid/Ask Volume
5119+
5120+
For U.S. equities, there is no single consolidated order book. Instead, multiple venues each maintain their own order books. Because data providers source from different markets, the `bidVolume` and `askVolume` reported at each update come from one specific order book at a time, not an aggregate across all venues.
5121+
5122+
As a result, these volume fields should not be treated as a proxy for total market liquidity at the top of book. They are informational and not especially representative in fragmented markets like U.S. equities.
5123+
5124+
#### Additional Notes
5125+
51155126
- Future streams using this format may adopt different report schemas as needed.
51165127
- Market status cannot detect public holidays. See [Market Hours](/data-streams/market-hours) for major holiday periods.
51175128
- Data availability and sourcing vary by session. Liquidity is typically highest during regular hours and lower during extended and overnight sessions.
@@ -5312,6 +5323,12 @@ This advanced RWA schema is built to support 24/5 streams, including DON Consens
53125323
Different fields may have been updated at different times.
53135324
</Aside>
53145325

5326+
<Aside type="note" title="Bid/Ask Volume Interpretation">
5327+
For U.S. equities, there is no single consolidated order book—multiple venues each maintain their own. The `bidVolume`
5328+
and `askVolume` reported come from one specific order book at a time, not an aggregate across all venues. These values
5329+
should not be treated as a proxy for total market liquidity and are primarily informational.
5330+
</Aside>
5331+
53155332
## Feeds
53165333

53175334
Each instrument is exposed through three distinct data streams feeds, each corresponding to a specific trading phase: **Regular Hours**, **Extended Hours**, and **Overnight Hours**.
@@ -5401,8 +5418,6 @@ Phase-specific feeds can introduce unique behavior due to venue-specific operati
54015418

54025419
During the first 10–20 seconds after regular hours open (9:30am ET), bid/ask quotes may not yet be available from the regular hours venue. In those cases, the reported price may still reflect the previous regular hours close rather than live market data.
54035420

5404-
This delay occurs because it takes time for the venue to begin publishing quotes after the market opens. This behavior is normal market microstructure, not a data quality issue.
5405-
54065421
Users should factor this transition period into their switching logic and consider alternative strategies during the first \~20 seconds of regular hours, such as:
54075422

54085423
- Pause or lock market activity

src/content/data-streams/reference/report-schema-v11.mdx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ Chainlink Data Streams that use the RWA Advanced (v11) schema adhere to the stru
4141
| `mid` | `int192` | DON Consensus mid-price |
4242
| `lastSeenTimestampNs` | `uint64` | Reflects the timestamp of the last update for the **mid price only** (nanoseconds). See [Notes](#notes) below. |
4343
| `bid` | `int192` | Median bid price |
44-
| `bidVolume` | `int192` | Volume at bid price |
44+
| `bidVolume` | `int192` | Volume at bid price. See [bid/ask volume note](#bidask-volume-note) below. |
4545
| `ask` | `int192` | Median ask price |
46-
| `askVolume` | `int192` | Volume at ask price |
46+
| `askVolume` | `int192` | Volume at ask price. See [bid/ask volume note](#bidask-volume-note) below. |
4747
| `lastTradedPrice` | `int192` | Last traded price |
4848
| `marketStatus` | `uint32` | Status of the real-world equity market. <br/> Possible values: <br/> `0` (Unknown), <br/> `1` (Pre-market extended hours), <br/> `2` (Regular hours), <br/> `3` (Post-market hours), <br/> `4` (Overnight), <br/> `5` (Weekend) <br/> [More details](#market-status-values) |
4949

@@ -64,8 +64,19 @@ Users should implement appropriate safeguards based on market status, such as pa
6464

6565
### Notes
6666

67+
#### Last Seen Timestamp
68+
6769
- **IMPORTANT**: The `lastSeenTimestampNs` field reflects the timestamp of the last update for the `mid` price only. Do not assume this timestamp applies to `bid`, `ask`, `bidVolume`, `askVolume`, or `lastTradedPrice`. Different fields may have been updated at different times.
6870
- `lastSeenTimestampNs` helps applications detect stale data for the mid price, especially important during market transitions and holidays.
71+
72+
#### Bid/Ask Volume
73+
74+
For U.S. equities, there is no single consolidated order book. Instead, multiple venues each maintain their own order books. Because data providers source from different markets, the `bidVolume` and `askVolume` reported at each update come from one specific order book at a time, not an aggregate across all venues.
75+
76+
As a result, these volume fields should not be treated as a proxy for total market liquidity at the top of book. They are informational and not especially representative in fragmented markets like U.S. equities.
77+
78+
#### Additional Notes
79+
6980
- Future streams using this format may adopt different report schemas as needed.
7081
- Market status cannot detect public holidays. See [Market Hours](/data-streams/market-hours) for major holiday periods.
7182
- Data availability and sourcing vary by session. Liquidity is typically highest during regular hours and lower during extended and overnight sessions.

src/content/data-streams/rwa-streams/24-5-us-equities-user-guide.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ This advanced RWA schema is built to support 24/5 streams, including DON Consens
3535
Different fields may have been updated at different times.
3636
</Aside>
3737

38+
<Aside type="note" title="Bid/Ask Volume Interpretation">
39+
For U.S. equities, there is no single consolidated order book—multiple venues each maintain their own. The `bidVolume`
40+
and `askVolume` reported come from one specific order book at a time, not an aggregate across all venues. These values
41+
should not be treated as a proxy for total market liquidity and are primarily informational.
42+
</Aside>
43+
3844
## Feeds
3945

4046
Each instrument is exposed through three distinct data streams feeds, each corresponding to a specific trading phase: **Regular Hours**, **Extended Hours**, and **Overnight Hours**.
@@ -129,8 +135,6 @@ Phase-specific feeds can introduce unique behavior due to venue-specific operati
129135

130136
During the first 10–20 seconds after regular hours open (9:30am ET), bid/ask quotes may not yet be available from the regular hours venue. In those cases, the reported price may still reflect the previous regular hours close rather than live market data.
131137

132-
This delay occurs because it takes time for the venue to begin publishing quotes after the market opens. This behavior is normal market microstructure, not a data quality issue.
133-
134138
Users should factor this transition period into their switching logic and consider alternative strategies during the first ~20 seconds of regular hours, such as:
135139

136140
- Pause or lock market activity

0 commit comments

Comments
 (0)