When I used the code to get the 5 minutes data of OHLC , it will update data every 1 minute, how to make the update frequency more faster?
subscriptions.Add(timeSeries.SetupDataSubscription("2330.TW")
.WithView("BID")
.WithAllFields()
.WithInterval(CommonInterval.Intraday5Minutes)
.From(DateTime.Now.AddHours(-96))
//.WithNumberOfPoints(4)
.OnDataReceived(DataReceivedCallback)
.OnDataUpdated(DataUpdatedCallback)
.CreateAndStart()
);