Previously we weren't allowing the user to input a selector for 1D data points unless they jumped through some hoops. With this change we can now easily specify a selector for our 1D data via code like the following:
RegisterIndicator(symbol, indicator, resolution, selector);
When resolving a default consolidator we'll now always use identity IF the resolution was not specified or if it matches the subscription's resolution. The idea here being if they're the same then we can safely assume that we don't need to aggregate/transform the data in any way and just pipe the .Value to the indicator for every piece of data we get.
This allows the 1D short code indicator functions to work (EMA, SMA, MACD, RSI, ect..)