Lets say I have two custom indicators, A and B. I add three B indicators to a chart, each with different params set in the editor. When I add Indicator A, I want to be able to choose from a list one of the three B indicators. The obvious solution is to traverse the Indicators on the ChartControl, but during the construction ChartControl is not available - its null. I then dont know how to provide a selector to choose from a set of B indicators, so that I can set 1 on indicator A. In indicator A I have a property, SelectedB, but to get this to provide a list, I had to make it of type IList<IndicatorB>. When the user selects one in the actual property editor in the chart, I want a single instance to be set.
Any advice or example indicators that do this I can reference?
Thanks,
Nick.

Comment