Question about GetHistoricalData Method.
If I do the following, would it load the data and save it to the database and in my next request get the values from the database and only pull the new data from server?
Or would it get a new copy of the data every single time from the broker?
Ideally, I want it to save the data and only fetch the new data if required.
var dateFrom = DateTime.Today.AddMonths(-6);
var dateTo = DateTime.UtcNow;
var historicData = _platformEngine.GetHistoricalData(new HistoricalDataRequest(inst, period));
historicData.AfterReload += HistoricalData_AfterReload;
historicData.Load(dateFrom, dateTo);