Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Vertical Line History

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

    Vertical Line History

    Hi,
    I have these two lines of code in my strategy but they only print lines once each, I have no history of the previous lines. Is there a way to have it print all previous vertical lines?

    Draw.VerticalLine(this, @"Long", 0, Brushes.White, DashStyleHelper.Solid, 2);
    Draw.VerticalLine(this, @"Short", 0, Brushes.CornflowerBlue, DashStyleHelper.Solid, 2);

    Thanks

    #2
    Hello miarocco,

    Thanks for your post.

    If you would like a drawing object to draw more than one instance of the object, you would need to set unique tag values for each drawing object. This could be seen in the Drawing section of the NinjaTrader 8 help guide page linked below.



    For example, you could add '+ CurrentBar' to your tag parameter to set unique tag values for each drawing object.

    Draw.VerticalLine(this, @"Long" + CurrentBar, 0, Brushes.White, DashStyleHelper.Solid, 2);

    Let me know if I may assist further.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment


      #3
      Originally posted by NinjaTrader_BrandonH View Post
      Hello miarocco,

      Thanks for your post.

      If you would like a drawing object to draw more than one instance of the object, you would need to set unique tag values for each drawing object. This could be seen in the Drawing section of the NinjaTrader 8 help guide page linked below.



      For example, you could add '+ CurrentBar' to your tag parameter to set unique tag values for each drawing object.

      Draw.VerticalLine(this, @"Long" + CurrentBar, 0, Brushes.White, DashStyleHelper.Solid, 2);

      Let me know if I may assist further.
      Great.... THanks!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      88 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      135 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      68 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      119 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      69 views
      0 likes
      Last Post PaulMohn  
      Working...
      X