My code is
AddChartIndicator(Indicator1);
Indicator1.Panel = 2;
AddChartIndicator(Indicator2);
Indicator2.Panel = 2;
The issue is that Indicator2 draws on Panel 3 and does not overlay/draw on Panel 2 as expected.
I would like them to both draw on Panel 2 as specified above as it makes more sense visually. What am I doing wrong?
I added it in State.Configure and State.DataLoaded with the same results.
I have also played with the order and put the Panel directive first with no change.
Indicator1.Panel = 2;
AddChartIndicator(Indicator1);
Indicator2.Panel = 2;
AddChartIndicator(Indicator2);
Any help would be greatly appreciated.

Comment