question

Upvotes
Accepted
1 2 1 4

Get date of fiscal year end using datatype code WC05350

Below are a few isins that return WC05350 as “NA”

  • IE00BY7QL619
  • US18482P1030
  • US1251411013
  • US0025353006

Here is the code snippet that I am using

publicstring GetData_SnapshotSingle()

{

var request = new DSDataRequest()

{

Instrument = new DSInstrument("IE00BY7QL619"),

DataTypes = new DSDataTypes("LOC", "EXNAME", "WC05350"),

Date = new DSSnapshotDate(DSDateType.Relative(-30, DSDateFrequency.Daily)),

};

var response = DSClient.DataService.GetData(request);

var respValue1 = response["LOC"]["IE00BY7QL619"];

var respValue2 = response["EXNAME"]["IE00BY7QL619"];

var respValue3 = response["WC05350"]["IE00BY7QL619"];

returnstring.Format("{0}{1}, {2}{3}, {4}{5}",

"RIC = ", respValue1.Value,

"Exchange = ", respValue2.Value,

"Fisical Year End = ", respValue3.Value);

}

Can you please advise how to get date of fiscal year end of above isins?

datastream-apidsws-apidata-type
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.

@vishal_kak

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query? If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.
Thanks,
-AHS

Hi,

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
Upvote
Accepted
681 2 2 1

Hi,

You need to include LATESTDATE within your start date.

Best regards

James

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.