For a deeper look into our DataScope Select REST API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
3 2 4 7

We are new to Datascope Select and we need to retrieve CDOR rate details template from Datascope select. Could please help me how to create to extract CDOR rate details in datascope select from URL or Through Rest API C# sample ?

dss-rest-apidatascope-selectdss
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.

Hello @gopijaladhi7,

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

Hello @gopijaladhi7,

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
13.7k 26 8 12

Determining the instrument RIC

The first thing is to determine which RIC contains the Canadian Dollar Offered Rate (CDOR) you are interested in. There are actually several, which you can find by using our Eikon product, or the RIC search tool in this portal, and typing CDOR as search criteria.

Here is a potential candidate result : CADBAFIX=

That said, please note this forum is aimed at software developers using Refinitiv APIs. The moderators on this forum do not have the required deep expertise in all the content sets available through our products to precisely answer your question. I advise you to call the Refinitiv Helpdesk number in your country. They will either have the answer for you right away, or will reach out to the content experts who can provide the answer you're looking for.

Requesting data for a RIC

Once you have the RIC(s) you need, you can request the data. You do not specify what "details" you are interested in, so I'll give you a generic answer: when you want to find a specific data field, you should check the DSS Data Content Guide. Open tab "Field Descriptions", and use a text filter on column D or E to display only the rows that "contain" a keyword that defines what you are looking for. The results will show in column C which templates (request types) will deliver that field. Base on that you can request the data, using either the GUI or the API. Our tutorials show many examples of data requests.

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 @gopijaladhi7

Just to expand on Christiaan's response, if you need official Content, Product or other support you can contact our Helpdesk to raise a Case by signing-up to MyRefinitiv the self-service portal. This would be the best approach if you want to confirm which constituent RICs/Chain RICs or File Codes to use.

In DSS that you can also use File Codes to add into the instrument list:

https://hosted.datascope.reuters.com/datascope/search/default.aspx?scr=IPC

File Codes for CDOR appear to be 172 ('real-time' RIC constituents), or 3487 ('delayed' RIC constituents)

In DSS you can also search for the Chain RICs (exact match search only) here: https://hosted.datascope.reuters.com/datascope/search/default.aspx?scr=CHN, ie. CADBAFIX=

https://hosted.datascope.reuters.com/DataScope/details/CHR_Q0FEQkFGSVg9%5EEN?key=0x1000000000000000_0x1000000000000000_N/E_H_CHR____CHR_CHR#valid-constituents

It is also worth mentioning that depending on if using 'real-time' or 'delayed' you may get some embargo, suppressed or other messages printed out in the DSS Notes file post-extraction. If there are any permission messages related to the RICs it is worth raising with your Refinitiv Account Manager to discuss these further.

On-Demand Intraday Pricing request example using File Code 172:

//Create the request
var extractionRequest = new IntradayPricingExtractionRequest
{
 IdentifierList = InstrumentIdentifierList.Create(
 new[] { new InstrumentIdentifier { Identifier = "172", IdentifierType = IdentifierType.FileCode } }, null, false),
 Condition = new IntradayPricingCondition { ScalableCurrency = true },
 ContentFieldNames = new[] {
 "Instrument ID", "Instrument ID Type", "RIC", "PE Code", "Exchange Code", "File Code", "Asset Type", "Currency Code", "Trade Date", "Bid Price",
 "High Price", "Low Price", "Open Price", 
 "Previous Close Date", "Previous Close Price", "Security Description" }
};
//Extract - NOTE: If the extraction request takes more than 30 seconds the async mechanism will be used. See Key Mechanisms var extractionResult = ExtractionsContext.ExtractWithNotes(extractionRequest); var extractedRows = extractionResult.Contents;
//Output if (!extractedRows.Any()) Debug.WriteLine("No rows returned"); else { foreach (var row in extractedRows) Debug.WriteLine( row.Identifier + " (" + row.IdentifierType + ") " + String.Join(", ", row.DynamicProperties.Select(dp => dp.Key + "=" + dp.Value))); } //Output Notes Debug.WriteLine("NOTES:"); foreach (var note in extractionResult.Notes) Debug.WriteLine(note);

Hi Gareth.teage,

Thanks a lot for your response.We are able to extract daily CDOR rates using your File Code 172:. But we need to extract CDOR rates for specific date? is it possible to extract past CDOR rates from datascope using Rest API?

Is there any sample code to retrieve old CDOR rates from datascope using rest api?.

Thanks in advance

Show more comments

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.