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

Draw when trading signal is found

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

    Draw when trading signal is found

    Hi all,

    I am backtesting a strategy, and I would like to draw an indication (above or below the candle) when the trading signal is found. I have looked into the Draw class, but I don't think that's what I need.

    Thank you

    #2
    Hello op1031,

    Thanks for your post.

    You could use the Draw class to draw objects on the chart when certain conditions in your script become true. For example, if you would like to draw a dot 1 tick below the low of each bar that your condition becomes true, the code would look something like this.

    Draw.Dot(this, "tag1" + CurrentBar, true, 0, Low[0] - TickSize, Brushes.Red);

    See this help guide for more information about Draw.Dot(): https://ninjatrader.com/support/help...8/draw_dot.htm

    And, see this help guide page for other Drawing objects you could use: https://ninjatrader.com/support/help...t8/drawing.htm

    Let us know if we may assist further.
    Brandon H.NinjaTrader Customer Service

    Comment


      #3
      Thank you. This answers my question.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by rhyminkevin, Today, 04:58 PM
      3 responses
      48 views
      0 likes
      Last Post Anfedport  
      Started by iceman2018, Today, 05:07 PM
      0 responses
      5 views
      0 likes
      Last Post iceman2018  
      Started by lightsun47, Today, 03:51 PM
      0 responses
      7 views
      0 likes
      Last Post lightsun47  
      Started by 00nevest, Today, 02:27 PM
      1 response
      14 views
      0 likes
      Last Post 00nevest  
      Started by futtrader, 04-21-2024, 01:50 AM
      4 responses
      50 views
      0 likes
      Last Post futtrader  
      Working...
      X