I am trying to make a indicator based on multiple other indicators input.
A this point, I hard code the indicators I need (for ex CCI/RSI/...).
I would like the user to chose dynamically the list of indicators input (periods, fast/low results etc..) like the data series input of any ninja indicator.
I use something like :
..
private IndicatorBase inputIndicator1;
..
[XmlIgnore()]
[Description("Indicator 1 input data")]
[Category("Parameters")]
[Gui.Design.DisplayName("Indicator 1")]
public NinjaTrader.Indicator.IndicatorBase InputIndicator1 {
get { return inputIndicator1; }
set { inputIndicator1 = value; }
}
Is this possible ?
If no, will it be possible with version 8 ?
Thank you.
W.

Comment