Is there any way this could be possible?
I use exactly the same coordinates. Here is the code:
DrawDot("Dot1"+CurrentBar, true, status.startIndex, High[status.startIndex]+10, Color.Pink);
DrawDot("Dot2"+CurrentBar, true, status.endIndex, High[status.endIndex]+10, Color.HotPink);
DrawLine("Line1"+CurrentBar, true, status.startIndex, High[status.startIndex]+10, status.endIndex, High[status.endIndex]+10, Color.HotPink, DashStyle.Solid, 2);
DrawLine("Line2"+CurrentBar, true, 5, 745, 1, 745, Color.HotPink, DashStyle.Solid, 2);

Comment