For pivots daily data may expose the settlement price, while intraday data only returns the close, for many instruments these are not identical.
For Fibonacci lines I perform calculations on daily data for a longer lookback period, because daily resolution is good enough, if lookback is exceeding 40 days. This way it is much faster to perform calcualtions for about 580 fib levels, actually only milliseconds with daily data.
As a consequence I use about 4 indicators that call daily bars on each of my three intraday charts within my default workspace.
Problem: When loading any instrument, this triggers 12 identical request for loading daily data from my data provider. Is there anyway of teaching NT that it does not need to make a new request for daily data, when such a request has been made fractions of a second ago?
Note: This problem is not linked to the other data loading bug (which occurs without 12 DailyBars indicators). The behaviour here is expected. I am just suggesting an improvement in view of data throttling.

Comment