In the HistoricalPricing - TSInterday project we're subscribing to streaming summaries with a Daily interval and are receiving the following error: "Error: Failed to load meta data. Failed to load Instrument Metadata for item: AUA04000524=WPAC". The same error is returned for US1DCP=. Here is the code that can duplicate the problem...
// Create the platform session.
using ISession session = Sessions.GetSession();
// Open the session
session.Open();
var stream = Summaries.Definition("AUA04000524=WPAC")
.Interval(Summaries.Interval.P1D)
.GetStream();
// Specify the TSI lambda expressions to capture 'Insert' and 'Update' events
stream.OnInsert((data, stream) => Common.DisplayTable($"INSERT: {DateTime.Now}", data.Table))
.OnUpdate((data, stream) => Common.DisplayTable($"UPDATE: {DateTime.Now}", data.Table))
.OnStatus((status, stream) => Console.WriteLine($"Status: {status}"))
.OnError((error, stream) => Console.WriteLine($"Error: {error}"))
.Open();
Console.ReadLine();
}
catch (Exception e)
{
Console.WriteLine($"\n**************\nFailed to execute: {e.Message}\n{e.InnerException}\n***************");
}