in 8.0.8 the following public Series<double> was visible and usable in the Market Analyzer. After updating to 8.0.9 it is not visible or usable.
[Browsable(false)] // this line prevents the data series from being displayed in the indicator properties dialog, do not remove
[XmlIgnore()] // this line ensures that the indicator can be saved/recovered as part of a chart template, do not remove
public Series<double> SignalSeries
{
get { return signalSeries; }
}
saltminer

, but it did work. 
Comment