-
Can't get API to work in local script (works in codebook)
Trying to fetch some historical data from Eikon API. I am running the following code: # Importing libraries import eikon as ek import datetime import pandas as pd ek.set_app_key('MY APP KEY') # Defining start time for the data series start = datetime.datetime.now() - datetime.timedelta(days=1) # 1 day ago…
-
Authentification API
Hi all, I'm investigating the feasability of a project using Refinitiv APIs. In the end-product, users would have to authenticate themselves to your products (e.g.: RDP APIs, ...), and I was wondering if you had an API allowing developers to use your Single Sign On (SSO) tech to authenticate themselves to several of your…
-
RKD News Story HTML to text
Client is using Postman. Client use RKD – RETRIEVE HEADLINES to get storyID, then use RETRIEVE NEWS to get the story for that storyID. The response is in HTML format. Client would like to know how to return the news story in text format. Alternatively, how to return a URL for the story, so that client can publish the URL…
-
If copy sample python code from articles,  s added
https://developers.refinitiv.com/en/article-catalog/article/instrument-pricing-analytics-volatility-surfaces-and-curves - for example, if I try copy code from this article and put it to my IDEA, nbsp symbols (white spaces) added, which are not accepted for python style code. for me, and I assume for other users, it's not…
-
Ng-View is not displaying data in AngularJS Routing
I am learning Angular JS. I am trying to learn single page application but ng-view is not showing any data. There is no error in the console. Main Home Page: <!DOCTYPE html> <html ng-app="RouteApp"> <head> <meta charset="utf-8" /> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>…
-
How are html entities like & handled during name matching
Can anyone tell me how HTML entities are handled during name matching. For example if our system sends a name with "&Amp;" instead of "&". Like for example: ERNST & YOUNG SL A & J MUCKLOW & CO LIMITED. Will the matching engine return matches with names as "ERNST & YOUNG SL" and "A & J MUCKLOW & CO LIMITED, at 95.1% match…
-
Updating Failed. Invalid JSON body passed with WordPress Version: 5.5.1
I am facing an issue when I am updating my posts. “Updating Failed. Invalid JSON body passed.” Tried changing permalink and deactivating different plugins, but the problem is still there. Problem Screenshot: https://imgur.com/a/8xDjE4C WordPress Version: 5.5.1 Theme: Newspaper V 10.3.6.1 Website:…
-
How to make html POST to IDS
Background. I have IDS server running on host padh4, port 8500. I want to request a snapshot from IDS, and filter FIDs BID and ASK. The following works ok from the command line: COMMAND: curl "http://padh4:8500/ids-rest/json/quote/" -d '{"item": ["CSCO.O"],"filter": ["BID","ASK","TRDPRC_1"],"service": "IDN_RDF","token":…
-
Is it possible to use JET api to create a self hosted application and delpoy in our webserver?
Is it possible to use JET api to create a self hosted application and delpoy in our webserver?
-
HTML to TEXT style (News story)
Hi I would like to get news in text in Jupyter Notebook. But I can get news only in HTML. How can I get text style news story? headlines = ek.get_news_headlines('IBM') for index, headline_row in headlines.iterrows(): story=ek.get_news_story(headline_row['storyId']) print (story, content-Type: text/html)
-
Access styles in Eikon Desktop
In Eikon Excel, you can use functions such as AdStyleStructure to return get details of styles. For example, you can use AdStyleAttribute("CUR","JPY","QM") to determine if Dollar/Yen is quoted directly or indirectly. Within App Studio, what is the equivalent method to access this type of information. (Styles can also be…
-
How can we transfer data from A app to B app using JET in Eikon?
How can we transfer data from A app to B app using JET in Eikon?
-
Publishing Eikon HTML5 App
I have created an HTML5 app that contains only HTML, JS, and CSS (no server side components). How do I go about publishing an app like this? I found the following documentation but that focuses on apps with server side components. [App Server - Programmer's Guide to HTML5 & Node.js, Java Spring, and C# Web Apps for…
-
Any documentation on using Flex layout for Eikon?
The Eikon WEB UI (https://emea1.apps.cp.thomsonreuters.com/Apps/EikonWebUI) page has a small section on Layout, but it's not the same layout I see in Eikon, for example at the AppRelease page (https://amers1.views.cp.icp2.mpp.reutest.com/Apps/AppReleaseJ) The components are laid out in rows and columns. Going into the…
-
Does Eikon Web App container support HTML5 Drag and Drop?
I'm using Eikon Web SDK and trying to follow the example from http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_draganddrop. However, when I published my application to Production, it seems like chromium in Eikon doesn't support this feature. Please confirm whether I am correct or not. //HTML Drag the W3Schools…