Discover Refinitiv
MyRefinitiv Refinitiv Perspectives Careers
Created with Sketch.
All APIs Questions & Answers  Register |  Login
Ask a question
  • Questions
  • Tags
  • Badges
  • Unanswered
Search:
  • Home /
  • Eikon Data APIs /
avatar image
Question by romerson.gadil21 · Sep 21, 2020 at 11:10 AM · eikon data api

How to retrieve Swaption Volatility in Excel API?

Raising the query on an external client's behalf:

Client is seeking assistance on how to pull the Swaption Volatility as seen in this page Home > Fixed Income > Interest Rate Derivatives > Swaptions
Eikon link: http://emea1.apps.cp.thomsonreuters.com/Explorer/GuideDefault.aspx?s=GFI40+AL+3&st=Menu+G+C&context=OV

using Excel API.

He would like to pass in a date and get the time-series of this swaption volatility surface.


People who like this

0 Show 0
Comment
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

4 Replies

  • Sort: 
avatar image
REFINITIV
Best Answer
Answer by Alex Putkov. · Sep 21, 2020 at 09:59 PM

@romerson.gadil21

You can retrieve this data using

=TR("EURSWPTNS=TTKL","GV4_TEXT;GEN_TEXT16;PRIMACT_1","SKIP:1-2")
Comment
romerson.gadil21

People who like this

1 Show 2 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

avatar image
romerson.gadil21 · Sep 22, 2020 at 09:40 AM 0
Share

Thank you Alex Putkov.

The client also asked if he can extract the time-series (as this looks like it extracts the current snapshot of the vol)?

avatar image
REFINITIV
Alex Putkov. ♦♦ romerson.gadil21 · Sep 22, 2020 at 12:32 PM 0
Share

For timeseries you need to use the RICs for individual swaptions. E.g. to get the timeseries of volatility for a 6M option on a 1Y swap use

=RHistory("EUR6MX1Y=TTKL",".TIMESTAMP;.CLOSE","INTERVAL:1D START:01-SEP-2020 END:15-SEP-2020")
avatar image
REFINITIV
Answer by chavalit.jintamalit · Sep 21, 2020 at 11:25 AM

Hi @romerson.gadil21

You would need to know RIC and fields carrying the information then you can use =TR function in Excel.

If you do not know the RIC and fields, you can raise a ticket to Refinitiv Content Helpdesk at my.refinitiv.com/

Comment

People who like this

0 Show 1 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

avatar image
romerson.gadil21 · Sep 21, 2020 at 01:06 PM 0
Share

Hi Chavalit,

I appreciate your reply. Here's the RIC that the client would like to get the Swaption Volatility in Excel API / Eikon API - EURSWPTNS=TTKL

Here's the page where the client was referring from "Swaption Volatility"

http://emea1.apps.cp.thomsonreuters.com/Explorer/GuideDefault.aspx?s=GFI40+AL+3&st=Menu+G+C&context=OV

avatar image
Answer by sumit · Sep 28, 2020 at 07:48 AM


Hi,


I am running this from python

ek.get_timeseries(
    ric_list,
    'CLOSE',
    start_date=start_date,
    end_date=end_date
)

where my list of rics is....

EUR_SWAPTIONS_RIC_LIST = [
    "EUR1MX1Y=TTKL", "EUR1MX2Y=TTKL", "EUR1MX3Y=TTKL", "EUR1MX4Y=TTKL", "EUR1MX5Y=TTKL", "EUR1MX7Y=TTKL", "EUR1MX10Y=TTKL",
    "EUR6MX1Y=TTKL", "EUR6MX2Y=TTKL", "EUR6MX3Y=TTKL", "EUR6MX4Y=TTKL", "EUR6MX5Y=TTKL", "EUR6MX7Y=TTKL", "EUR6MX10Y=TTKL",
    "EUR5YX1Y=TTKL", "EUR5YX2Y=TTKL", "EUR5YX3Y=TTKL", "EUR5YX4Y=TTKL", "EUR5YX5Y=TTKL", "EUR5YX7Y=TTKL", "EUR5YX10Y=TTKL",
    "EUR10YX1Y=TTKL", "EUR10YX2Y=TTKL", "EUR10YX3Y=TTKL", "EUR10YX4Y=TTKL", "EUR10YX5Y=TTKL", "EUR10YX7Y=TTKL", "EUR10YX10Y=TTKL",
    "EUR20YX1Y=TTKL", "EUR20YX2Y=TTKL", "EUR20YX3Y=TTKL", "EUR20YX4Y=TTKL", "EUR20YX5Y=TTKL", "EUR20YX7Y=TTKL", "EUR20YX10Y=TTKL",
]
and start_date: 1st March, 2020 and end_date: 26th Sept, 2020.

However, I only get data from 6th July, 2020

Can I not retrieve data for a longer look-back?

Thanks,

Sumit

Comment

People who like this

0 Show 4 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

avatar image
REFINITIV
Alex Putkov. ♦♦ · Sep 28, 2020 at 01:33 PM 0
Share

See the answer on this thread. The response to a single get_timeseries call for interday data is limited to 3K rows, which is shared by all instruments in the call.

avatar image
sumit Alex Putkov. ♦♦ · Sep 28, 2020 at 02:14 PM 0
Share

Thanks a lot!!

avatar image
sumit Alex Putkov. ♦♦ · Sep 30, 2020 at 01:07 PM 0
Share
Hi,
  Tried this :-
ek.get_timeseries(
    ric_list,
    'CLOSE',
    start_date='2020-03-01',
    end_date='2020-03-11'
)

However, I get "No data available for every single ric in the ric_list.

Any thoughts?

Regards

Sumit

avatar image
REFINITIV
Alex Putkov. ♦♦ sumit · Sep 30, 2020 at 02:32 PM 0
Share

Are you able to reproduce this consistently or was it a once off request failure? Can you give an example of a RIC in your ric_list?

avatar image
Answer by romerson.gadil21 · Oct 14, 2020 at 05:48 AM

Hi Team,


Thank you for your help. However, for some reasons, I can't find any 'Accept' button.

Comment

People who like this

0 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Watch this question

Add to watch list
Add to your watch list to receive emailed updates for this question. Too many emails? Change your settings >
12 People are following this question.

Related Questions

On repeated dates inside a request

Jupyter Notebook not connecting to Eikon Data API

How to get ISIN and RIC for a corresponding Bond ISIN using python Data API ?

StreamingPrices limits on Data API

Why is get_timeseries much slower than get_data?

  • Feedback
  • Copyright
  • Cookie Policy
  • Privacy Statement
  • Terms of Use
  • Careers
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Alpha
  • App Studio
  • Block Chain
  • Bot Platform
  • Calais
  • Connected Risk APIs
  • DSS
  • Data Fusion
  • Data Model Discovery
  • Datastream
  • Eikon COM
  • Eikon Data APIs
  • Elektron
    • EMA
    • ETA
    • WebSocket API
  • Legal One
  • Messenger Bot
  • Messenger Side by Side
  • ONESOURCE
    • Indirect Tax
  • Open PermID
    • Entity Search
  • Org ID
  • PAM
    • PAM - Logging
  • ProView
  • ProView Internal
  • Product Insight
  • Project Tracking
  • Refinitiv Data Platform
    • Refinitiv Data Platform Libraries
  • Rose's Space
  • Screening
    • Qual-ID API
    • Screening Deployed
    • Screening Online
    • World-Check One
    • World-Check One Zero Footprint
  • Side by Side Integration API
  • TR Knowledge Graph
  • TREP APIs
    • CAT
    • DACS Station
    • Open DACS
    • RFA
    • UPA
  • TREP Infrastructure
  • TRIT
  • TRKD
  • TRTH
  • Thomson One Smart
  • Transactions
    • REDI API
  • Velocity Analytics
  • Wealth Management Web Services
  • World-Check Data File
  • Explore
  • Tags
  • Questions
  • Badges