-
Requesting US equity imbalance type/side via Workspace API-- numeric data for string fields
I'm porting some tasks from the Eikon C# .NET APIs to the LSEG Data Library API (implementing in Python). For some of this data we subscribe to the US imbalance feed RICs (e.g. IBM.NOI, AAPL.ITC). I'm subscribing to, among other fields, IMB_TYPE, IMB_ACT_TP, and IMB_SIDE). These fields, in the Eikon Quote app and the…
-
Question on clients API
Raising this question on behalf of a user: Recently we migrated to Refinitiv Data Platform .Net from Eikon Data API and we are using Desktop sessions. After this migration we started seeing following issues: Receiving rate limit errors: Now Rate limit is set to 10000. Earlier there were no limit when we were using Eikon…
-
Renewing session using ISession wrapper
Hello, we are currently using the PlatformSession C# implementation to login to the RDP Api. We would like to maintain our session for a long period of time and query multiple instruments through it. This is our current implementation, obtained from parts unknown, as it was done before my time. I saw a previous answer…
-
[C#] How to properly handle client side crashes and restarts
Hi! I'm using the RTSDK (https://github.com/Refinitiv/Real-Time-SDK/tree/master/CSharp/Ema) to connect to an OMM Provider application and listen to updates on about 30k instruments. Suppose I create my consumer class, use it to register interest for a set of instruments, and receive updates. I'm wondering what happens if…
-
How to Open close refresh many requests in an Interactive Provider C#
Is there an example on how to manage requests ( open, close, refresh, ..) comming from consumers to an interactive provider ?
-
ChannelDictionary vs FileDictionary, which one should I use
Currently we are using Real-Time SDK's C# version. Our program uses an EmaConfig.xml file as demonstrated in some sample programs. I am aware of this section in the file: <DictionaryList> <Dictionary> <Name value="Dictionary_1"/> <!-- dictionaryType is optional: defaulted to ChannelDictionary" --> <!-- possible values:…
-
How to create a pop-up window from REDI API (C#)
Is there a way to generate a pop-up window from the REDI C# API? This just needs to be an alert for the trader and should NOT stop the C# API program from continuing execution.
-
A mix of Request timeout/channel down/Service not up
Our feedhandler uses C# Real-Time SDK, it subscribed to ~5000 names. On Dec 18, 2024 we notice that there were some issue from ~14:30 to 16:30 EST. The below are some of the samples we received: 2024-12-18 14:51:58.9900 | Refinitiv StatusMsg: Name: CASY.O, ServiceName: hEDD, State: Open / Suspect / None / 'channel down.'…
-
HistoricalReferenceExtractionRequest very slow (C# API)
Hello, I'm requesting static data on several options chain RIC on a range of 10 days. It takes at least 1 hour to have a result. I will need the static data on the whole history (many years), what is the most efficient way to request the data ? Example of the code on 10 days: var extractionRequestStatic = new…
-
EMA C#: OmmDate object modified during the for-each iteration
Real-Time: For Real-Time SDK C#, looks like the OmmDate object will be modified during the for-each iteration, could you please verify if this is a bug? Take this RIC as example /HCEIX4 . public void OnRefreshMsg(RefreshMsg refreshMsg, IOmmConsumerEvent consumerEvent) { OmmDate? date = null; Console.WriteLine(refreshMsg);…
-
Monitoring multiple subscriptions, sessions - RDP .NET
Hi, We're using the Refinitiv Data library in a way similar to this example to create a subscription to SQS and poll news from the queue. Could you please let us know if there is a way to monitor created subscriptions or sessions across different machine IDs? There is a queue manager, but it only has access to…
-
Subscription Liveness - RDP .NET
Hi, We're using the Refinitiv Data library in a way similar to this example to create a subscription to SQS. Could you please share the recommended approach to monitor the following aspects: * Verifying an active subscription to ensure we continue receiving news. * Confirming that the queue is operational and live. In…
-
C# in Workspace Python
Is the functionality C# in Python available in Workspace? If not, is this functionality within the roadmap of enhancement in Workspace?
-
Data API C# - Streams stop working
Hello, I am having issues where the streams are freezing (no more data comes in) and then my program has excessive memory usage. When I take a heap shot, all of the memory are used by json objects which look to be refinitiv data objects. It's definitely not my application part holding onto memory. I paused a debug session…
-
Requesting multiple instruments of historical data at once is only returning the top data point?
I am trying to figure out the best way in the C# Workspace Data API to pull out historical OHLC data for multiple markets at once to increase the speed instead of doing one by one. Using this sample project: 2.1.01-HistoricalPricing-Summaries My issue is that if I have a list of symbols... in response1, where i pass a…