question

Upvotes
Accepted
3 1 1 6

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 5.0 MiB each and 10.0 MiB total.

1 Answer

Upvotes
Accepted
38.1k 69 35 53

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 5.0 MiB each and 10.0 MiB total.

Click below to post an Idea Post Idea