Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to draw a dashed line ? NT7

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

    How to draw a dashed line ? NT7

    Does anyone know how to draw a dashed line instead of a solid line ? Here is the code I am trying to use for NT7 but it doesnt work.


    if(displayAskLine) DrawRay("AL", 1, a, 0, a, Color.Pink, DashStyle.Dash, 1);
    if(displayBidLine) DrawRay("BL", 1, b, 0, b, Color.CornflowerBlue, DashStyle.Dash, 1);


    This is the only thing that will work in NT7:

    if(displayAskLine) DrawRay("AL", 1, a, 0, a, Color.Pink);
    if(displayBidLine) DrawRay("BL", 1, b, 0, b, Color.CornflowerBlue);

    #2
    Hello Jason11,

    There are a couple overloads you can use that allow specifying the DashStyle.

    Link to DrawRay() here.

    DrawRay(string tag, bool autoScale, int anchor1BarsAgo, double anchor1Y, int anchor2BarsAgo, double anchor2Y, Color color, DashStyle dashStyle, int width)

    DrawRay("AL", true, 1, a, 0, a, Color.Pink, DashStyle.Dash, 1);
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      that did it. Thanks!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      597 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      343 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      103 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      556 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      555 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X