You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`feedId`|`bytes32`| Unique identifier for the Data Streams feed |
36
+
|`validFromTimestamp`|`uint32`| Earliest timestamp when the price is valid (seconds) |
37
+
|`observationsTimestamp`|`uint32`| Latest timestamp when the price is valid (seconds) |
38
+
|`nativeFee`|`uint192`| Cost to verify report onchain (native token) |
39
+
|`linkFee`|`uint192`| Cost to verify report onchain (LINK) |
40
+
|`expiresAt`|`uint32`| Expiration date of the report (seconds) |
41
+
|`mid`|`int192`| DON Consensus mid-price |
42
+
|`lastSeenTimestampNs`|`uint64`| Reflects the timestamp of the last update for the **mid price only** (nanoseconds). See [Notes](#notes) below. |
43
+
|`bid`|`int192`| Median bid price |
44
+
|`bidVolume`|`int192`| Volume at bid price. See [bid/ask volume note](#bidask-volume-note) below. |
45
+
|`ask`|`int192`| Median ask price |
46
+
|`askVolume`|`int192`| Volume at ask price. See [bid/ask volume note](#bidask-volume-note) below. |
47
+
|`lastTradedPrice`|`int192`| Last traded price |
48
+
|`marketStatus`|`uint32`| Status of the real-world asset market. Values depend on the stream's supported hours. See [Market Status Values](#market-status-values) for details.|
49
49
50
50
### Market Status Values
51
51
52
-
The `marketStatus` field reflects the current state of the equity market:
52
+
The `marketStatus` field indicates the current state of the market. The possible values vary depending on the stream's supported trading hours:
53
+
54
+
#### Standard RWA Streams
55
+
56
+
For streams with standard market hours coverage. Unless a feed explicitly states extended hours support, it is assumed to follow this format:
@@ -60,7 +74,7 @@ The `marketStatus` field reflects the current state of the equity market:
60
74
|`4`|**Overnight**| 8:00pm–4:00am Sun evening–Fri morning | Overnight session with limited liquidity |
61
75
|`5`|**Weekend**| 8:00pm Fri–8:00pm Sun | Weekend period when primary markets are closed |
62
76
63
-
Users should implement appropriate safeguards based on market status, such as pausing trading, adjusting risk parameters, or implementing staleness checks during non-regular hours.
77
+
Users should implement appropriate safeguards based on market status, such as pausing trading, adjusting risk parameters, or implementing staleness checks during non-regular hours or closed periods.
0 commit comments