Block RFQ - Maker Quotes
Channel
block_rfq.maker.quotes.{accountId}.any
Description
Subscribe to Block RFQ maker quotes updates.
Subscription Method
private/subscribe
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| accountId | string | true | Account ID |
Request Example
{
"method": "private/subscribe",
"rid": 2,
"params": {
"channels": [
"block_rfq.maker.quotes.12323.any"
]
}
}
Message
| Name | Type | Description |
|---|---|---|
| results | array of objects | |
| > quoteId | string | ID of the Block RFQ quote |
| > blockRfqId | string | ID of the Block RFQ |
| > label | string | The user created label for the order. |
| > lastUpdatedAt | long | Timestamp of the last update of the quote (milliseconds since the UNIX epoch) |
| > filledQuantity | string | Filled amount of the quote. For perpetual and futures the filled_amount is in USD units, for options - in units or corresponding cryptocurrency contracts, e.g., BTC or ETH. |
| > executionInstruction | string | Execution instruction of the quote. Only support all_or_none. |
| > createdAt | long | The time in UNIX nanoseconds since the epoch when the Order was created. |
| > quantity | string | The total size of the Quote, denominated in the clearingCurrency of the RFQ. |
| > legs | Array of Objects | The composite Instrument legs of the RFQ. |
| >> instrumentName | string | The exchange instrument name |
| >> ratio | int | The relative multiplier applied to the quantity of the Instrument's amount relative to the amount of the RFQ. Maximum of 2 decimal places. |
| >> quantity | string | The total quantity for this leg. |
| >> side | string | The direction of the composite leg relative to the RFQ. |
| >> price | string | The price of the Instrument leg, denominated in the quoteCurrency of the RFQ. |
| > hedge | object | |
| >> instrumentName | string | Instrument name |
| >> price | string | The price of the Instrument leg, denominated in the quoteCurrency of the RFQ. |
| >> quantity | string | This value multiplied by the ratio of a leg gives trade size on that leg |
| >> side | string | The direction of the Order. |
| > price | string | The total strategy price of the Quote, denominated in the quoteCurrency of the RFQ. |
| > side | string | The direction of the Quote |
| > status | string | The availability of the Quote for the user to action |
| > statusReason | string | Reason of quote cancellation |