For a deeper look into our Elektron API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 0 1

Price Unit in cent or in dollars

How can I know whether the return data I get from refinitiv ElektronTimeseries API is in cent or in dollars.

For example, when i query Universal_Close_Price for RIC Chain 0#W+, the unit of the price is cent, while if I query Universal_Close_Price for RIC Chain 0#CL+, the unit is in dollars.


elektronrefinitiv-realtimeelektron-sdkrrttime-series
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
80.1k 257 52 75

@kai.fang

You can use the "Currency Code" field. The request looks like this:

{
  "ExtractionRequest": {
    "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.ElektronTimeseriesExtractionRequest",
    "ContentFieldNames": [
      "Instrument ID",
      "RIC",
      "Open",
      "High",
      "Low",
      "Last",
      "Volume",
      "VWAP",
      "Number of Price Moves",
      "Trade Date",
      "Currency Code"
    ],
    "IdentifierList": {
      "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
      "InstrumentIdentifiers": [
        {
          "Identifier": "0#W+",
          "IdentifierType": "ChainRIC"
        }
      ],
      "ValidationOptions":{
          "AllowHistoricalInstruments": true
      }
    },
    "Condition": {
      "ReportDateRangeType": "Range",
      "QueryStartDate": "2021-05-01",
      "QueryEndDate": "2021-05-20"
    }
  }
}

The output is:

Instrument ID,RIC,Open,High,Low,Last,Volume,VWAP,Number of Price Moves,Trade Date,Currency Code
0#W+,W615E2,,,,,,,,2021/05/03,USc
0#W+,W615E2,,,,,,,,2021/05/04,USc
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.