If I programatically draw a vertical line and unlock it, i can then move it around the chart manually and have my indicator read its location. If however i turn Equidistant bar spacing off, the line can no longer be moved. The properties of the line still show unlocked. Manually drawn vertical lines dont have this problem.
if (CurrentBar < Count-2) return;
if (FirstRun)
{
myLine = Draw.VerticalLine(this,"TheLine",10,Brushes.Black);//.IsLocked = false;
myLine.IsLocked = false;
FirstRun = false;
}

Comment