The addition of support for "working data" in indicators within QuantConnect would enable strategies to respond to the most recent data, enhancing intraday trading efficiency. This feature would allow indicators to calculate and provide values based on the latest incomplete bar data, without altering the indicator's internal state.

The current inability to calculate "what-if" scenarios with indicators based on incomplete bars can limit our ability to make timely decisions. For instance, calculating the Simple Moving Average (SMA) using the latest minute-by-minute data instead of waiting for the hourly bar to close.

This could be done by introducing a WorkingData property for indicators, similar to consolidators, to access current working values. It could be inherent to indicators registered with a consolidator, where the working data is from the higher resolution timeframe of the consolidator.

Related posts:
- How to get current lower resolution incomplete bar (quantconnect.com)
- Resolution.Daily SimpleMovingAverage Indicator using today's intraday value: is this possible using ComputeNextValue or something similar? (quantconnect.com)