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 SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      36 views
      0 likes
      Last Post SalmaTrader  
      Started by CarlTrading, 07-05-2026, 01:16 PM
      0 responses
      20 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 06-17-2026, 10:32 AM
      0 responses
      14 views
      0 likes
      Last Post CaptainJack  
      Started by kinfxhk, 06-17-2026, 04:15 AM
      0 responses
      19 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 06-17-2026, 04:06 AM
      0 responses
      22 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X