Dear Team,
in relation to this question
https://community.developers.refinitiv.com/questions/96288/delay-in-subscription-and-requested-ohlc-data-us-e.html
, I still once in a week have issues subscribing to 1 min timeseries OHLC data for these rics:
SBUX.O and MSFT.O
I use this code:
var timeSeries = DataServices.Instance.TimeSeries;
timeSeries.SetupDataSubscription(sym)
.WithView("TRDPRC_1")
.WithAllFields()
.WithInterval(CommonInterval.Intraday1Minute)
.From(DateTime.UtcNow.AddMinutes(-1)) //this can be extended to hours any anything of that kind
.OnDataReceived(DataReceivedCallback)
.OnDataUpdated(DataUpdatedCallback)
//.WithTimeZone(TimezoneType.Instrument) //when this is enabled, then it does not fire the events for new bars and everything
.CreateAndStart());
Sometimes, it works, if I subscribe before the market opens in the US, so 14:30 UTC time. And on some days, I cannot get
the subscription to work at all.
Though on other US equity rics, the subscription works perfectly.
Any ideas?
Regards
Mike