I have a code tha seems to have the same problem os scaling. When I use this:
PlotOHLC( hOpen, hHigh, hLow, hClose, "Heiken" + Name(), colorLightGrey, styleCandle );
//Plot(C,"",colorblack,styleThick | styleBar,Null,Null,Null,0);
Plot(TomorowStrg,"",colorGreen,styleThick | styleStaircase,Null,Null,1,1);
Plot(TomorowShSL,"",colorRed,styleThick | styleStaircase,Null,Null,1,1);
Plot(TomorrowShTgt,"",colorGold,styleThick | styleStaircase,Null,Null,1,1);
the plot do no scale correctely, hiding some of the plot, in automatic scale.
When I turn the code to:
PlotOHLC( hOpen, hHigh, hLow, hClose, "Heiken" + Name(), colorLightGrey, styleCandle );
Plot(C,"",colorblack,styleThick | styleBar,Null,Null,Null,0);
Plot(TomorowStrg,"",colorGreen,styleThick | styleStaircase,Null,Null,1,1);
Plot(TomorowShSL,"",colorRed,styleThick | styleStaircase,Null,Null,1,1);
Plot(TomorrowShTgt,"",colorGold,styleThick | styleStaircase,Null,Null,1,1);
the auto scale works well, showing all price range. Is there a fix. I am using AB 6.38 last upgraded license, this code is the same I used in 5.50.
I do not want to show the barchart.