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

adding arrows to indicator

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

    adding arrows to indicator

    I'm trying to add arrows to my MACD indicator whenever the fast crosses the slow. so far only the most recent arrow will show up?? Not sure what I'm doing wrong. Attaching the code file. Thanks for any help.
    Attached Files

    #2
    Originally posted by tvaughan4 View Post
    so far only the most recent arrow will show up?? Not sure what I'm doing wrong.

    The tags your using "Macd" for each drawobject must be unique, or by default, they will redraw themselves..

    Change your tags to something unique.. Easiest way is to use CurrentBar in conjunction with your tag string..
    Code:
    Draw.ArrowDown(this, "MacdAboveCross" + CurrentBar, true, 0, Value[0] + 1, Brushes.Red, false);
    Now the DrawObject always ends up with a unique tag, that even identifies the bar they were drawn..





    -=Edge=-
    NinjaTrader Ecosystem Vendor - High Tech Trading Analysis

    Comment


      #3
      Yep!!! Works like a charm. Thanks so much.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by algospoke, Yesterday, 06:40 PM
      2 responses
      19 views
      0 likes
      Last Post algospoke  
      Started by ghoul, Today, 06:02 PM
      3 responses
      14 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by jeronymite, 04-12-2024, 04:26 PM
      3 responses
      45 views
      0 likes
      Last Post jeronymite  
      Started by Barry Milan, Yesterday, 10:35 PM
      7 responses
      20 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by AttiM, 02-14-2024, 05:20 PM
      10 responses
      181 views
      0 likes
      Last Post jeronymite  
      Working...
      X