I am using below .NET code
_request1 = _timeSeries.SetupDataRequest("DIJF22")
.WithView("TRDPRC_1")
.WithAllFields()
.WithInterval(CommonInterval.Tick)
.WithNumberOfPoints(60000)
.OnDataReceived(DataReceivedCallback)
.CreateAndSend();
And I am using below excel formula
=RHistory("DIJF22","TRDPRC_1.Timestamp;TRDPRC_1.Value;TRDPRC_1.Volume","INTERVAL:TICK NBROWS:60000","FRQ:10M","CH:Fd",B1)
The results from both of them are not matching at all.
Please check