question

Upvotes
Accepted
13 2 3 8

How to get futures RIC and chain RIC by REST API

A client cannot get futures RIC and chain RIC content by RTH REST API. but can get the RIC like EUR=. Client environment is .NET framework v4.8 and uses sample code 'Refinitiv DSS .NET SDK'. cannot-get-futures-ric.png

dss-rest-apidsstick-history-rest-api.net
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.

hi @tao.su

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

Upvotes
Accepted
32.2k 40 11 20

Hello @tao.su,

In addition to guidance from @gareth.teage ,

You may wish to create InstrumentList as empty per DSS .NET SDK examples:

var instrumentList = new InstrumentList { Name = "Instrument List Name" };
extractionsContext.InstrumentListOperations.Create(instrumentList);

And then append the identifiers to it:

IEnumerable<InstrumentIdentifier> appendIdentifiers = new[]
{
     new InstrumentIdentifier
    {
        Identifier = "SAGc1",
        IdentifierType = IdentifierType.Ric,
        UserDefinedIdentifier = "UserIdent5A"
    },
     new InstrumentIdentifier
    {
        Identifier = "0#SAG:",
        IdentifierType = IdentifierType.ChainRIC,
        UserDefinedIdentifier = "UserIdent5A"
    }
};
extractionsContext.InstrumentListOperations.AppendIdentifiers(instrumentList, appendIdentifiers, true);

Let us know how this works on your side?

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.

Thanks @zoya faberov

I've been working directly with @tao.su and the Tick History team via Teams to narrow down the cause of this.

Believe this is resolved now, not a C# code or API issue.

Tick History by design for Free Trial allows for a current 2 week date range window of data for testing purposes. It has been confirmed that client can get recent data for 0#SAG: Chain now.

@tao.su please confirm if this answer can be accepted (post marked as closed)

Best regards,

Gareth

Upvotes
260 2 2 4

Hi @tao.su ,

As discussed via Teams we have validated that Tick History itself accepts use of Chain RIcs including the one provided in a Time and Sales extraction request.

We are pending knowing if the Chain RIC is being added to an Instrument List (for Scheduled Extraction use), or added into an Array for an On Demand ExtractRaw Request.

Best regards,

Gareth


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.