Can you confirm the following would be possible...
I am looking to plot a horizontal line dynamically at a given plot location... lets assume 50% of the prior bar.
I know how to get the plot level.
I don't know how to have the line stretch across the chart and move with price after each bar close and NOT have the plot do the standard functionality of showing the historical plot values.
I used the following code to print a horizontal line. This works, but I would like to have the value a plot and not a drawing if possible.
HorizontalLine myLine4 = Draw.HorizontalLine(this, "tag4", High[0] - 100, Brushes.Black); myLine4.Stroke = new Stroke(Brushes.Green, DashStyleHelper.Dash, 1);
I saw a prior post that provides an example of displaying the SMA value on the current bar only. However I don't know that example would allow a line drawn across the entire chart.
Any help is greatly appreciated.
Thanks

Comment