protected override void Initialize()
{
Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Line, "FC"));
Add(new Plot(Color.FromKnownColor(KnownColor.Blue), PlotStyle.Line, "ThinRatio"));
Add(new Plot(Color.FromKnownColor(KnownColor.DarkSeaGreen) , PlotStyle.Line, "MFRatio"));
}
and access them as
Values[0].Set(c.stats.FC); // FC
Values[1].Set(c.stats.thinRatio); // ThinRatio
Values[2].Set(c.stats.mfRatio); // MoneyFlowCode
this seems to work but I want to display each series in a different panel. This will allow me to display these with their Y axes making sense for each series. Is that possible? Also is this the most efficient way to have secondary values for an Indicator?
Thanks,

Comment