subscription = timeSeries.SetupDataSubscription("CLH3") //.WithView("BID") .WithAllFields() .WithInterval(CommonInterval.Intraday60Minutes) //.From(DateTime.Now.AddHours(-3)) .OnDataReceived(DataReceivedCallback) .OnDataUpdated(DataUpdatedCallback) .CreateAndStart();
Code for the reference. I want to the fetch multiple rics with single subscription. Is it feasible or not? If yes, kindly tell the way.
Also, please provide me the detailed documentation of the API which tell the limitations of the API.