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 traderqz, Today, 09:44 AM
      2 responses
      4 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by stafe, 04-15-2024, 08:34 PM
      8 responses
      40 views
      0 likes
      Last Post stafe
      by stafe
       
      Started by rocketman7, Today, 09:41 AM
      2 responses
      6 views
      0 likes
      Last Post rocketman7  
      Started by rocketman7, Today, 02:12 AM
      7 responses
      31 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by guillembm, Yesterday, 11:25 AM
      3 responses
      16 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Working...
      X