Skip to content

Commit b2c65aa

Browse files
committed
update RDP and ERT in Cloud information
1 parent 7057099 commit b2c65aa

File tree

3 files changed

+36
-4
lines changed

3 files changed

+36
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ interday_result3.txt
1111
interday_result4.txt
1212
notebook/test/
1313
notebook/.ipynb_checkpoints
14-
*/.ipynb_checkpoints/*
14+
*/.ipynb_checkpoints/*
15+
trkd_websocketexample.py

README.md

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,30 @@ The best way is via the pip package management tool
6666
## Optional - How to install libraries for notebook examples
6767
Please follow the [classic Jupyter Notebook installation guide](https://jupyter.org/install) page.
6868

69+
## RDP and ERT in Cloud
70+
71+
You may consider the strategic [Refinitiv Data Platform (RDP)](https://developers.refinitiv.com/refinitiv-data-platform) web base APIs platform. RDP APIs give you seamless and holistic access to all of Refinitiv content (whether real-time or non- real-time, analytics or alternative datasets) such as Historical Pricing, Environmental Social and Governance (ESG), News, Research, etc and commingled with your own content, enriching, integrating and distributing the data through a single interface, delivered wherever you need it via the following delivery mechanisms:
72+
* Request - Response: RESTful web service (HTTP GET, POST, PUT or DELETE)
73+
* Alert: delivery is a mechanism to receive asynchronous updates (alerts) to a subscription.
74+
* Bulks: deliver substantial payloads, like the end of day pricing data for the whole venue.
75+
* Streaming: deliver real-time delivery of messages.
76+
77+
Please see [RDP API Overview page](https://developers.refinitiv.com/refinitiv-data-platform/refinitiv-data-platform-apis) for more detail.
78+
79+
As part of RDP, [Elektron Real Time in Cloud (ERT in Cloud)](https://developers.thomsonreuters.com/elektron/websocket-api/quick-start?content=45253&type=quick_start) gives you access to best in class Real Time market data delivered in the cloud. ERT in Cloud is a new delivery mechanism for RDP, using the AWS (Amazon Web Services) cloud. Once a connection to RDP is established using ERT in Cloud, data can be retrieved using [Elektron WebSocket API](https://developers.thomsonreuters.com/websocket-api) (the same as TRKD Streaming Service).
80+
81+
Key benefit of the strategic RDP and ERT in Cloud platform are the Cloud Delivery. The Platform is based on [Amazon AWS](https://aws.amazon.com/), the world class leading Cloud Provider for developers. The RDP and ERT in Cloud support output for multiple cloud vendors such as AWS, Azure, GCS, etc. for cloud-native or on-premise integration. The ERT in Cloud servers are hosted in multiple location world-wide which lets the application choose the closest server based on their region for full potential.
82+
83+
Please refer to [Elektron WebSocket API Quick Start - Connecting to Elektron Real Time in Cloud](https://developers.refinitiv.com/elektron/websocket-api/quick-start?content=45253&type=quick_start) page and [How to migrate the WebSocket application from TRKD Streaming service to Elektron Real Time in Cloud](https://developers.refinitiv.com/article/how-migrate-websocket-application-trkd-streaming-service-elektron-real-time-cloud) article for more detail.
84+
85+
6986
## References
7087
For further details, please check out the following resources:
71-
* [Thomson Reuters Knowledge Direct API page](https://developers.refinitiv.com/thomson-reuters-knowledge-direct-trkd) on the [Thomson Reuters Developer Community](https://developers.refinitiv.com/) web site.
72-
* [Thomson Reuters Knowledge Direct API Catalog](https://www.trkd.thomsonreuters.com/SupportSite/RequestBuilder/requestbuilder.aspx) web site.
73-
* [Elektron WebSocket API](https://developers.refinitiv.com/websocket-api) page on the [Thomson Reuters Developer Community](https://developers.refinitiv.com/) web site.
88+
* [Refinitiv Knowledge Direct API page](https://developers.refinitiv.com/thomson-reuters-knowledge-direct-trkd) on the [Refinitiv Developers Community](https://developers.refinitiv.com/) web site.
89+
* [Refinitiv Knowledge Direct API Catalog](https://www.trkd.thomsonreuters.com/SupportSite/RequestBuilder/requestbuilder.aspx) web site.
90+
* [Elektron WebSocket API](https://developers.refinitiv.com/websocket-api) page on the [Refinitiv Developers Community](https://developers.refinitiv.com/) web site.
91+
* [Refinitiv Data Platform (RDP) APIs page](https://developers.refinitiv.com/refinitiv-data-platform).
92+
* [Refinitiv Data Platform (RDP) APIs Gateway page](https://api.refinitiv.com).
7493

7594
## Release Note
7695
- Version 1: 6 Sep 2016
@@ -118,3 +137,5 @@ For further details, please check out the following resources:
118137
- Add TRKD Interday and Intraday Jupyter Notebooks.
119138
- version 1.5.2: October 2019
120139
- Update TRKD Interday and Intraday services operations.
140+
- version 1.5.3: May 2020
141+
- Update RDP and ERT in Cloud information.

trkd_wsstreaming.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@
77
Please see the Thomson Reuters Knowledge Direct product page at https://my.refinitiv.com
88
for additional information regarding the TRKD API.'''
99

10+
'''
11+
If you are interested TRKD Streaming Service API, please consider the Elektron Real Time in Cloud (ERT in Cloud) which is a strategic Real Time market data delivered in the cloud.
12+
13+
Key benefit of ERT in Cloud platform is the Cloud Delivery. The Platform is based on Amazon AWS, the world class leading Cloud Provider for developers.
14+
ERT in Cloud support output for multiple cloud vendors such as AWS, Azure, GCS, etc. for cloud-native or on-premise integration.
15+
The ERT in Cloud servers are hosted in multiple location world-wide which lets the application choose the closest server based on their region for full potential.
16+
17+
Please see more detail in https://github.com/Refinitiv-API-Samples/Example.ERT.TRKD.Python.WebSocket_Migration project.
18+
'''
19+
1020
import os
1121
import sys
1222
import requests

0 commit comments

Comments
 (0)