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?

Tagged:

Best Answer

  • 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