Hi. I'm trying to get daily data for ES future contract but History returns no data at all.
var history = History(_contract.Symbol, 10, Resolution.Daily);
foreach (var data in history.OrderByDescending(x => x.Time).Take(3))
{
Log("History: " + data.Symbol.Value + ": " + data.Time + " > " + data.Close);
}
Nothing shows up in log with above code. When I change resolution to Minute, it works.Any help with this will be deeply appreciated! TIA.