Hi, I am requesting 1 minute candles for EUR= with the following:
var DataResponse = Summaries.Definition().Universe("EUR=")
.Interval(Summaries.Interval.PT1M)
.Count(1440)
.GetData();
I see that the timestamps for the returned records are in local time.
How would I request them to be returned in UTC?
thanks