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
77 5 12 17

EIkon 1.1.6. post2 get_data returns -1 while excel returns correct value

loaded Eikon version 1.1.6.post2
the operation you intend to perform will cost 1 data points
2020-09-28 15:05:27
 get_data( instruments = ["AAPL.O"]
    , fields = ["TR.CompanyMarketCap(Sdate=0D)/*Market Cap*/"]
    , debug = False, raw_output = True
    )
EikonGetData request returned the following data: 2 columns and 2 rows
EikonGetData request returned with length 7

it then returns the following result:


[[1]]
[[1]]$columnHeadersCount
[1] 1

[[1]]$data
[[1]]$data[[1]]
[[1]]$data[[1]][[1]]
[1] "AAPL.O"

[[1]]$data[[1]][[2]]
[1] -1



[[1]]$headerOrientation
[1] "horizontal"

[[1]]$headers
[[1]]$headers[[1]]
[[1]]$headers[[1]][[1]]
[[1]]$headers[[1]][[1]]$displayName
[1] "Instrument"


[[1]]$headers[[1]][[2]]
[[1]]$headers[[1]][[2]]$displayName
[1] "Company Market Cap"

[[1]]$headers[[1]][[2]]$field
[1] "TR.COMPANYMARKETCAP(SDATE=0D)/*MARKET CAP*/"




[[1]]$rowHeadersCount
[1] 1

[[1]]$totalColumnsCount
[1] 2

[[1]]$totalRowsCount
[1] 2



if I however perform the exact same operation in excel I get

=TR("AAPL.O";"TR.CompanyMarketCap(Sdate=0D)/*Market Cap*/";"CH=Fd RH=IN";B2)

with the following response:


1,92027E+12

This happen issues with All US stocks other Japanese European do not seem to have this problem



eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-api
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.

Hello @laurens

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?

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

Upvotes
Accepted
22.1k 59 14 21

Hello @laurens,

I try your query in Python and get the expected result:

>> ek.get_data(instruments = ["AAPL.O"], fields = ["TR.CompanyMarketCap(Sdate=0D)"], debug = False, raw_output = True)

{
 'columnHeadersCount': 1,
 'data': [['AAPL.O', 1920272742080]],
 'headerOrientation': 'horizontal',
 'headers': [[{
    'displayName': 'Instrument'
   }, {
    'displayName': 'Company Market Cap',
    'field': 'TR.COMPANYMARKETCAP(SDATE=0D)'
   }
  ]],
 'rowHeadersCount': 1,
 'totalColumnsCount': 2,
 'totalRowsCount': 2
}

As you can see the market cap is correct.

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.

Upvotes
39.4k 77 11 27

@laurens

I'm afraid I'm also not reproducing the issue you describe. If the problem you experienced persists, it would be very helpful if you could capture the HTTP request corresponding to this get_data call using Fiddler, and post the request and the response here.

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.

Upvotes
39.4k 77 11 27

@laurens

Thank you for your participation in the forum. I'm afraid we haven't been able to reproduce the issue you experienced. Do you continue experiencing it? Are you able to reproduce it consistently? If yes, would you be able to create a Fiddler capture of the HTTP request and response corresponding to the get_data call that returns -1 as the value for TR.CompanyMarketCap field?

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.

Hello @laurens,

Unfortunately we were not able to reproduce the issue that you were seeing. Does the issue remain outstanding?

If you have made progress, please give the community a brief update, it will help the next developers with same or similar issues.

If that was not the case, I would like to bring to your attention a parallel discussion of a similar issue , where a solution has been find, and encourage you to try the same, letting us know if it was helpful.

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.