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 cmoran13, 04-16-2026, 01:02 PM
      0 responses
      77 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      45 views
      0 likes
      Last Post PaulMohn  
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      168 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      101 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      165 views
      2 likes
      Last Post CaptainJack  
      Working...
      X