Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 andrewtrades, Today, 04:57 PM
      0 responses
      0 views
      0 likes
      Last Post andrewtrades  
      Started by chbruno, Today, 04:10 PM
      0 responses
      3 views
      0 likes
      Last Post chbruno
      by chbruno
       
      Started by josh18955, 03-25-2023, 11:16 AM
      6 responses
      436 views
      0 likes
      Last Post Delerium  
      Started by FAQtrader, Today, 03:35 PM
      0 responses
      6 views
      0 likes
      Last Post FAQtrader  
      Started by rocketman7, Today, 09:41 AM
      5 responses
      19 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Working...
      X