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
5 0 1 2

Broker Price Target Recommendation in different Currencies

Is it possible to determine the currency that a broker's price target is priced in?
I was pulling data for STN, but realized the price targets are in Canadian Dollars, not USD.
When I try pulling "currency" data, the result is still USD.

Is there a field I can pull that will indicate the currency used by specific brokers' price targets?

pythonpython api
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.

1 Answer

· Write an Answer
Upvotes
Accepted
17k 80 39 63

Hi @bshapiro,

I would suggest you confirm with the helpdesk as they will involve a content specialist to help determine the appropriate properties. You can access "Get Help & Support" within the desktop by hitting F1.

Also, it would be helpful if you included a snippet of code so we can attempt to provide some guidance. That being said, the following code was what I came up with:

df, err = ek.get_data(['STN'], ['TR.PriceClose', 'TR.PriceClose.Currency'])
df
df, err = ek.get_data(['STN.TO'], ['TR.PriceClose', 'TR.PriceClose.Currency'])
df

ahs.png


ahs.png (13.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.

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.