Issues with non-normal interval options

dev12345
dev12345 Newcomer
edited March 12 in Refinitiv Data Platform

Hello, daily historical/stream requests do not work with options that don't have standard intervals like this one 1SW2W1014O25 (Soybean with a price of 1014)

I can run the 2.1.11-HistoricalPricing-TSIntraday project with this symbol, but if I run the 2.1.10-HistoricalPricing-TSInterday project it starts hitting internal exceptions and doesn't return data.

Answers

  • Jirapongse
    Jirapongse ✭✭✭✭✭

    @dev12345

    Thank you for reaching out to us.

    Please enable the tracing log by using the following code so we can verify the incoming and outgoing messages.

    try
    {
        Common.Prompt = false;
    
        Log.Level = NLog.LogLevel.Trace;

    // Intercept all LSEG Data Library log messages within a lambda expression. In our case, the lambda expression
    // simply echos all log messages generated within the library to the console.
    Log.Output = (loginfo, parms) => Console.WriteLine($"Application: {loginfo.Level} - {loginfo.FormattedMessage}"); // Create the desktop session. using ISession session = Sessions.GetSession(Sessions.SessionTypeEnum.DESKTOP); // Open the session session.Open(); // Create a Historical Pricing stream - specifying the desired 'interday' interval var stream = Summaries.Definition("1SW2W1014O25").Fields("BID", "ASK", "HIGH_1", "LOW_1", "OPEN_PRC", "TRDPRC_1", "ACVOL_UNS") .Interval(Summaries.Interval.P1D) .Sessions(HistoricalPricing.Sessions.normal) .Count(5) .GetStream();