Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Arrows not drawing on tick charts

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

    Arrows not drawing on tick charts

    I am developing an indicator that will use arrows and simply put these arrows will not draw on tick or renko charts, only on minute charts, right now I am just trying to get them to print:

    protected override void OnBarUpdate()
    {
    if (Close[1]>Close[0])
    DrawArrowUp("tagA"+CurrentBar, 0, Low[0] - 3 * TickSize, Color.CornflowerBlue);

    Again, using this code they print on time charts but no other type. I am using NT7
    Thanks in advance!

    #2
    Hello meandthetrio,

    Thanks for your post.

    We've moved your topic into "NinjaTrader7 indicator development" just to keep NT7 and NT8 separated as the methods and properties can be different between them. Please help us keep the forums organized by posting in the appropriate topics, thank-you.

    I would suggest adding this line of code just above your if statement: if (CurrentBar < 1) return; // wait until 2nd bar before proceeding

    If you look at the log tab of your control center, you may see errors listed there concerning bar index error. The conditional check of the CurrentBar is to ensure that at least 1 bar gets loaded before the indicator tests to see if the current bar [0] is less then the previous bar[1]. The indicator, when it loads, will always start at the first bar of data and on that first bar there is no [1].

    The reason why it may show on the time based bars but not price based could be coincidental related to the condition used, Close[1]>Close[0].

    Reference: https://ninjatrader.com/support/help...currentbar.htm

    Comment


      #3
      Worked like a charm, thank you so much

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by sjsj2732, 03-23-2026, 04:31 AM
      0 responses
      78 views
      0 likes
      Last Post sjsj2732  
      Started by NullPointStrategies, 03-13-2026, 05:17 AM
      0 responses
      313 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      318 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      149 views
      1 like
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      115 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Working...
      X