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

How do I convert TR.TotalReturn fwd 4w from local currency to USD?

I pull TR.TotalReturn 4w forward return numbers from the API but they are all in local/native currency. How would I convert this number to a USD number. For example when using the RICCode SBKJ.J, the 4w forward return From 2019-07-26 To 2019-08-23 is -6.6597, I've looked on Bloomberg and the equivalent in USD is -12.6257. How do I produce this number in Eikon Refinitiv, I've tried using USD closing price (TR.PriceClose) and ZAR closing prices on 2019-08-23 and 2019-07-26 but cannot produce the resulting number in USDsbkjj-fwd-4w.jpg

eikon-data-api#technology
sbkjj-fwd-4w.jpg (33.0 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.

1 Answer

· Write an Answer
Upvotes
Accepted
14.4k 30 5 10

Hi @lib-periodicals1 .

As mentioned in the case number 12827259 that

For data item TR.TotalReturn it is calculated based on the instrument currency only.
Currently, we do not have the functionality to change the currency in Excel or Python API.

Here's an alternative way to to convert timeseries of 1 week total return to USD currency, you need to retrieve the timeseries of exchange rate, merge the two timeseries and apply the exchange rate to the total return.

df1, err = ek.get_data("SBKJ.J",
                       ["TR.TotalReturn1Wk.date","TR.TotalReturn1Wk"],
                       {'SDate': '2019-07-26', 'EDate': '2019-08-23'})
df2, err = ek.get_data("ZAR=",
                       ["TR.BIDPRICE.date","TR.BIDPRICE"],
                       {'SDate': '2019-07-26', 'EDate': '2019-08-23'})
df = df1.merge(df2, how='left', on='Date')
df['Date'] = pd.to_datetime(df['Date'])
df.set_index('Date', inplace=True)
df.rename(columns={'Bid Price':'USDZAR Exch rate'}, inplace=True)
df.drop(['Instrument_x', 'Instrument_y'], axis=1, inplace=True)
df['1 Week Total ReturnUSD'] = df['1 Week Total Return'] / df['USDZAR Exch rate']
df

The moderators on this forum are expertise on Refinitiv APIs usage. However, they do not have deep expertise in every type of content available through Refinitiv products. Such expertise is available through Refinitiv Helpdesk, which can be reached via MyRefinitiv and the support team is going to contact you soon to assist with this.

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.