// Indicator 1
AddChartIndicator(Indicator1);
Indicator1.Panel = 2;
// Indicator 2
AddChartIndicator(Indicator2);
Indicator2.Panel = 2;
I did this and I ended up with the Indicators showing on two different Panels.
I tried this as suggested in a different post:
// Indicator 1
AddChartIndicator(Indicator1);
ChartIndicators[0].Panel = 2;
// Indicator 2
AddChartIndicator(Indicator2);
ChartIndicators[1].Panel = 2;
And again the Indicators showed up in two different panels.
So what am I doing wrong? According to the Example the above should work.

Comment