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 Barry Milan, Today, 10:35 PM
      1 response
      8 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by WeyldFalcon, 12-10-2020, 06:48 PM
      14 responses
      1,428 views
      0 likes
      Last Post Handclap0241  
      Started by DJ888, Yesterday, 06:09 PM
      2 responses
      9 views
      0 likes
      Last Post DJ888
      by DJ888
       
      Started by jeronymite, 04-12-2024, 04:26 PM
      3 responses
      40 views
      0 likes
      Last Post jeronymite  
      Started by bill2023, Today, 08:51 AM
      2 responses
      16 views
      0 likes
      Last Post bill2023  
      Working...
      X