Hi, I am looking to match up API data to Workspace chart data. Using the .Net sample for historical pricing summaries, I'm finding that TRDPRC_1 sometimes doesn't match that shown in Workspace, wondering if I need to use a different field etc..
This is the sample code:
// Retrieve Interday Summaries with P1D (1-day interval).
var response = Summaries.Definition("VOD.L")
.Interval(Summaries.Interval.P1D)
.Fields("DATE", "OPEN_PRC", "HIGH_1", "LOW_1", "TRDPRC_1", "ACVOL_UNS")
.GetData();
This image shows workspace compared to the API output:
thanks