I am trying to overlay a plot and a DrawLine to price but i cant. My drawing stay in the bottom always.

What i am doing wrong? Thank you
Here my code:
protected override void Initialize(){
Overlay =true;
DrawOnPricePanel = true;
Add(new Plot(Color.Blue,PlotStyle.Line, "plotline"));
}
protected override void OnBarUpdate(){
DrawHorizontalLine("newline", false, Close[0], Color.Black, DashStyle.Solid,3);
MaxNivel.Set(Close[0]);
}

Comment