Comment on page
Limitations
Important Note: Both the Taker and the Maker will receive all updates through the JSON-RPCoverWebSockets Notification channels for events relating to RFQs, Quotes, Orders and Trades.
A user is only a Maker where their Quote is executed upon by an Order. A user is only a Taker if they submit an Order which crosses an existing Quote.
If you would like to create an RFQ or check if one exists, you should request the RESToverHTTP [POST]
/rfqs/
endpoint.Each RFQ is composed of Quotes. Quotes are NOT aggregated by Price levels as is usual in centralized Quote Book.
Makers submit Quotes on RFQs and Paradigm returns them individually to all users as children of the RFQ primarily because of workflow complications relating to some venues' "Block Size Minimum" rules.
You should request the RESToverHTTP [GET]
/quotes/
endpoint.Users are NOT able to submit Quotes which cross an existing resting Quote on an RFQ.
You should request the RESToverHTTP [POST]
/rfqs/{rfq_id}/quotes/
endpoint.Users are able to submit a Quote which crosses an existing Quote on an RFQ.
You should request the RESToverHTTP [POST]
/rfqs/{rfq_id}/quotes/
.Users are able to replace a previously submitted Quote for an existing RFQ.
You should request the RESToverHTTP [PUT]
/rfqs/{rfq_id}/quotes/{quote_id}
endpoint.Takers are not able to cancel a requested Order. You will receive a successful/erroneous response from the RESToverHTTP [POST]
/rfqs/{rfq_id}/orders/
request with information regarding the outcome.Last modified 4d ago