Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Removing an arrow if signal not triggered

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

    Removing an arrow if signal not triggered

    Hello,

    My strategy draws an arrow above/below a candle when certain conditions are met and triggers a trade if the next candle makes a higher high (for longs) / lower low (for shorts) than the prior candle.
    Now, if the next candle DOESN'T make a higher high or a lower low than the candle with the arrow, I'd like the arrow to disappear from the chart once the candle has closed.
    Is there an easy way to do somethig like this?

    Thanks

    #2
    Hello laocoon,

    Thanks for your post.

    Drawing objects could be removed from a chart by calling RemoveDrawObject() and specifying the tag of the drawing object you want to remove.

    See this help guide for more information about RemoveDrawObject(): https://ninjatrader.com/support/help...drawobject.htm

    If your strategy is running Calculate.OnBarClose, the strategy will process information and calculate at the close of the bar. If you are running Calculate.OnPriceChange or OnEachTick, you would need to check IsFirstTickOfBar and then call RemoveDrawObject() in that condition check.

    IsFirstTickOfBar returns true if the incoming tick is the first tick of a new bar, meaning that that current bar just closed.

    See this help guide about IsFirstTickOfBar: https://ninjatrader.com/support/help...ttickofbar.htm

    Let us know if we may assist further.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    47 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    141 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    160 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    96 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    275 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X