Hi,
I'm trying to get the 10 year yield going back for decades. When I use the following call using the API, I only get 59 records even though I am requesting 5000 records.
How do I get more data with the following code? Thanks! Robby
request = timeSeries.SetupDataRequest("91282CAE1=")
.WithView("CLEAN_PRC")
.WithAllFields()
.WithInterval(CommonInterval.Daily)
.WithNumberOfPoints(5000)
.OnDataReceived(DataReceivedCallback)
.OnStatusUpdated(OnStatusUpdated)
.CreateAndSend();