Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| developers:websocket:quotes [2025/03/15 14:43] – [Secondary Market Data] chad | developers:websocket:quotes [2026/09/08 00:38] (current) – chad | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | <note warning> | ||
| + | |||
| ====== Quote Feed ====== | ====== Quote Feed ====== | ||
| Line 52: | Line 54: | ||
| MarketDepthSubscribe { | MarketDepthSubscribe { | ||
| | | ||
| - | | + | |
| | | ||
| | | ||
| Line 66: | Line 68: | ||
| MarketDepthSubscribe { | MarketDepthSubscribe { | ||
| | | ||
| - | | + | |
| | | ||
| | | ||
| Line 80: | Line 82: | ||
| * **MarketDefinition** – Sent once per market, unless already received via another feed. | * **MarketDefinition** – Sent once per market, unless already received via another feed. | ||
| * **MarketSnapshot** – Provides a full market state on initial subscription. | * **MarketSnapshot** – Provides a full market state on initial subscription. | ||
| - | * **MarketDepthUpdate** – Sends incremental changes to depth. | + | * **MarketDepth** – Sends incremental changes to depth. |
| Example MBP message handling: | Example MBP message handling: | ||
| Line 97: | Line 99: | ||
| break; | break; | ||
| - | case ServerMessage.PayloadOneofCase.MarketDepthUpdate: | + | case ServerMessage.PayloadOneofCase.MarketDepth: |
| - | | + | |
| break; | break; | ||
| Line 126: | Line 128: | ||
| MarketByOrderSubscribe { | MarketByOrderSubscribe { | ||
| | | ||
| - | | + | |
| | | ||
| | | ||
| Line 139: | Line 141: | ||
| MarketByOrderSubscribe { | MarketByOrderSubscribe { | ||
| | | ||
| - | | + | |
| | | ||
| | | ||
| Line 211: | Line 213: | ||
| ^ **Message** ^ **Description** ^ | ^ **Message** ^ **Description** ^ | ||
| | MarketDepthTrade | If a `Trade` feed is subscribed, the trade ticker is sent as a feed of MarketDepthTrade messages. | | | MarketDepthTrade | If a `Trade` feed is subscribed, the trade ticker is sent as a feed of MarketDepthTrade messages. | | ||
| - | | MarketHighLow | Publishes | + | | MarketHighLow | Publishes |
| | MarketPriceLimits | Publishes the price limits (bands or collars) set by the exchange for the market. | | | MarketPriceLimits | Publishes the price limits (bands or collars) set by the exchange for the market. | | ||
| | MarketSettlement | Contains the latest market settlement, held settlment, open interest, cleared volume and VWAP information as published by the exchange. | | | MarketSettlement | Contains the latest market settlement, held settlment, open interest, cleared volume and VWAP information as published by the exchange. | | ||