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.

@kai.fang

Hi,

Thank you for your participation in the forum.

Is the reply below satisfactory in answering your question?

If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question.

Otherwise please post again offering further insight into your question.

Thanks,

AHS

Hello @kai.fang ,

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,

-AHS

1 Answer

· Write an Answer
Upvotes
Accepted
78.8k 250 52 74

@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.