Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to draw continuous lines

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

    How to draw continuous lines


    Hi, I'm new to programming, I wanted to see how I can convert this draw.line into continuous points as well as the swing

    Translation:
    hello i am new to programming i wanted to ask how can i convert this draw.line to continuous points as well as the swing.
    private void PlotZone(int BarEnd) /// Trazar tq
    {
    Draw.Line(this, "EntryDot"+ CurrentBar, true, base.CurrentBar- this.TQstarted, this.TQEntry, BarEnd, this.TQEntry,Brushes.Cyan, DashStyleHelper.Dot, 3 );
    Draw.Line(this, "StopDot"+ CurrentBar, true, base.CurrentBar - this.TQstarted, this.TQStop, BarEnd, this.TQStop, Brushes.Red, DashStyleHelper.Dot, 3 );
    Last edited by ElonkTrader; 06-07-2021, 09:18 AM.

    #2
    Hello ElonkTrader,

    Thanks for your post. We have moved it to a new thread as the question does not involve creating a an indicator that draws candle sticks.

    Draw.Line will draw a line between 2 bars on the chart. If you want to have a continuous line, I suggest to create a plot, and then to assign new plot values with each new bar. You can assign plot values to Values[X][0], where X is the plot number, starting at 0.

    Our help guide documentation below can help to see how plots can be added and values assigned to plots.

    AddPlot - https://ninjatrader.com/support/help...8/?addplot.htm

    Otherwise, you could consider using unique drawing tags when calling Draw.Line so new lines are created with each new call of Draw.Line. You could then use class level variables that hold where the ending bar of the last line is, so that bar can be used as the starting point for the next line.

    Additional tips for using NinjaTrader drawing tools with NinjaScript can be found below.

    Drawing - https://ninjatrader.com/support/help...8/?drawing.htm

    We look forward to assisting.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    70 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    152 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    162 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    100 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    288 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X