Hello,

I'm interested in putting subindicator properties in a rolling window. I attached an example algo with bollinger bands. Right now it's set to access just the BB current value (to attach a valid backtest). However, If I try to access BB[1].UpperBand.Value it gives an error saying ~ 

Runtime Error: AttributeError : 'IndicatorDataPoint' object has no attribute 'UpperBand'
at Update in main.py:line 59 :: if sd.Security.Price>sd.BB1Window[1].UpperBand.Value:
AttributeError : 'IndicatorDataPoint' object has no attribute 'UpperBand'

Thanks,

Michael