Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Drawline question

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

    Drawline question

    Hi Support,

    I have a question regarding drawline, for example as below

    DrawLine(string tag, bool autoScale, int startBarsAgo, double startY, int endBarsAgo, double endY, Color color, DashStyle dashStyle, int width)

    DrawLine("tag1", false, 10, 1000, 0, 1000, Color.LimeGreen, DashStyle.Dot, 2);


    Is there anyway to drawline,so that it starts from the left of the screen to like 50 bars and it remains there as horizontal line.


    Thanks
    Commodity_trader

    #2
    You will not be able to know which bar is on the left most edge of the screen, but you can draw a line of 50 bars. Your startBarsAgo will be 50 and your end barsAgo will be 0. That will draw a line of 50. If you don't resubmit this line of code you will not move the code.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      if (CurrentBar < 50) DrawLine("tag1", false, CurrentBar, 1000, 0, 1000, Color.LimeGreen, DashStyle.Dot, 2);

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by jaybedreamin, Today, 05:56 PM
      0 responses
      3 views
      0 likes
      Last Post jaybedreamin  
      Started by DJ888, 04-16-2024, 06:09 PM
      6 responses
      18 views
      0 likes
      Last Post DJ888
      by DJ888
       
      Started by Jon17, Today, 04:33 PM
      0 responses
      1 view
      0 likes
      Last Post Jon17
      by Jon17
       
      Started by Javierw.ok, Today, 04:12 PM
      0 responses
      6 views
      0 likes
      Last Post Javierw.ok  
      Started by timmbbo, Today, 08:59 AM
      2 responses
      10 views
      0 likes
      Last Post bltdavid  
      Working...
      X