How to extract all LIBOR rates(USD, GBP, CHF, EUR, JPY) with all 7 different maturities(Overnight...

beatgtech
beatgtech Newcomer
How to extract all LIBOR rates(USD, GBP, CHF, EUR, JPY) with all 7 different maturities(Overnight, 1 week, 1 month, 2 month, 3 month, 6 month, 12 month) by sending request to DSS REST API? Please give an example, urgent.

Best Answer

  • @beatgtech

    The rates and maturities could be identified using RIC name. For example, USD overnight rate, the RIC should be on USDONFSR=. If the extraction takes tool long to complete, it possibly is due to embargo. Please find more information in this tutorial.

    Anyway, you can try the /LIBOR=which is delayed RIC. The delayed RIC is not affected by embargo.

    Below is the request sample.

    {
        "ExtractionRequest": {
            "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.IntradayPricingExtractionRequest",
            "ContentFieldNames": [
                "RIC",
                "Last Price",
                "Trade Date"
            ],
            "IdentifierList": {
                "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
                "InstrumentIdentifiers": [
                    {
                        "IdentifierType": "ChainRIC",
                        "Identifier": "/LIBOR="
                    }
                ]
            }
        }
    }


Answers