Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
9 1 1 6

How to get fund issue date via Eikon API?

I want to get the fund issue date via Eikon API, but it returns empty, kindly help check if the field "ISSUE_DATE" is correct or not? Thanks.


data, err = ek.get_data(instruments=['LP68728214'], fields=[
"TR.RICCode",
"ISSUE_DATE"
])

Response:

{

"instrument": {

"0": "LP68728214"

},

"ricCode": {

"0": "LP68728214"

},

"issueDate": {

"0": null

}

}


1686037714234.png


#contentfundsdateissue
1686037714234.png (108.2 KiB)
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.

@anchu

Hi,

Thank you for your participation in the forum.

Is the reply below satisfactory in answering your question?

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

1 Answer

· Write an Answer
Upvote
Accepted
78.8k 250 52 74

@anchu

Thanks for reaching out to us.

You can use the TR.FundLaunchDate field.

df, err = ek.get_data(["LP68728214"],["TR.FundLaunchDate"])
df

The output is:

1686039219066.png

You can use the Data Item Browser to search for available fields, and parameters.

I hope that this information is of help.


1686039219066.png (8.9 KiB)
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.