Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Draw.Line with (double startY) set to chart.Control

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Draw.Line with (double startY) set to chart.Control

    Hi,

    Is it possible in code to start plotting a line on the left side of the chart?
    Also, will the plot start move as you scroll on chart?

    example
    Draw.Line(this,"Settlement",true, chartControl.CanvasLeft, SM, -100, SM, Brushes.Gray, DashStyleHelper.Solid, 2);

    Thanks, Woody

    #2
    Hello woodyfox,

    It is possible to create a line that is attached to left side of a chart, but you would not want to use ChartControl.CanvasLeft for this. You would want to call ChartControl.GetTimeByX(ChartPanel.X) to get the appropriate input to attach the line to the edge of a chart. You will also want to call this line within OnRender() to have its position update as you scroll a chart.

    Please consider the follow as an example:

    Code:
    private DateTime MyTime;
    private double ClosePrice;
    protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
    {
    	if(ChartControl != null)
    		Draw.Line(this,"Settlement",true, ChartControl.GetTimeByX(ChartPanel.X), ClosePrice, MyTime, ClosePrice, Brushes.Gray, DashStyleHelper.Solid, 2);
    }
    I am using two variables to hold the current time and the current price to use as input with the line. You may update these variables within OnBarUpdate(), because you will not be able to access the normal price and time series' directly from OnRender().

    You may reference the following documentation:

    Draw.Line() - https://ninjatrader.com/support/help...?draw_line.htm

    OnRender() - https://ninjatrader.com/support/help.../?onrender.htm

    GetTimeByX() - https://ninjatrader.com/support/help...gettimebyx.htm

    Please let me know if I may be of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    628 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    359 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    105 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    562 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    568 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X