In C# Time Series API, how many RICs one can use in Time Series Subscription to fetch data on single

 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.

Best Answer