1) if we have an indicator with exposed variable and it is read in a strategy with something like StrategyVar = IndicatorXYZ().ExposedVar. Is my reading of the documents correct in that the act of reading it forces an OnbarUpdate() if necessary, in the indicator, given there is an Update() in the get of the public variable.
2) I wish to maintain settable property inputs to the indicatorXYZ but do not wish to list them in the exposed indicator as overloads. Is there a way to do that.
i.e. I do not want it to look like StrategyVar = IndicatorXYZ(true,false,0,true).ExposedVar . There are too many inputs. At first I thought just removing the [NinjaScriptProperty] would do it, but since most of them are public it didn't like that.
Thanks
Jerry

Comment