question

Upvotes
Accepted
3 2 4 7

How to pull Indicative Opening Auction Price and Indicative Opening Auction Volume via REDI using .NET API?

redi-api
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

@lattanzi

Thank you for your participation in the forum. If the reply below is satisfactory in resolving your query please click the 'Accept' text next to the reply.

This will help community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks, AHS

Hello @lattanzi

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?

If so please can you click the 'Accept' text next to the appropriate reply. This will guide all community members who have a similar question.

Thanks,

AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such. Thanks, AHS

1 Answer

· Write an Answer
Upvotes
Accepted
79k 250 52 74

You can use the CacheControl object to pull L1 market data from REDI's back-end. The list of available fields is in Appendix A REDI Data Fields in the REDI API Specification.

However, I couldn't find the "Indicative Opening Auction Price" and "Indicative Opening Auction Volume" in the list.

The following code demonstrates how to pull bid price for IBM.

CacheControl orderCache = new CacheControl();

object BidPrice = null;

object exec_err = null;

orderCache.Submit("L1", "true", ref exec_err);

orderCache.GetL1Value("IBM", "Bid", ref BidPrice);

Console.WriteLine(BidPrice.ToString());

Can you pull the "Indicative Opening Auction Price" and "Indicative Opening Auction Volume" from the REDIPlus UI?

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.