I have an indicator that has the need that the user can select another indicator + plot as one of its parameters
(Note that I know we can nest indicators by selecting it via the indicators Input series but that's not what I want)
The indicator should just have the normal data series as its input and allow the user to select another indicator as one of its parameters
Then I want to use the plot of this user-selected indicator from within my own indicator
Hope this makes sense :-)
I tried something like this, but that doesn't work
[Display(ResourceType = typeof(Custom.Resource), Name = "Indicator",)]
public Series<double> SomeIndicator { get; set; }

Comment