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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    83 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    45 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    65 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    68 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    57 views
    0 likes
    Last Post CarlTrading  
    Working...
    X