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

filtering triggers by range

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

    filtering triggers by range

    Is it possible to have an alert trigger only if the close of the current bar is a greater than or equal to a specific number of ticks from the high x number of bars back? What I want to do is filter out tight ranges from my alerts so if I set the minimum range to be at least 10 ticks from the trigger to the previous high or low x number of bars back it wont send an alert unless that condition is met in addition to the other conditions of the alert. If this is possible please provide the code for it's implementation. Thanks in advance.

    #2
    Hello gordongekko,

    Thank you for your note.

    Yes this would be possible.

    If you’d like to check if the current price is above the high 5 bars ago, plus 5 ticks, you would use,

    Code:
    if(Close[0]>High[5] +5*TickSize)
    If you were interested if the current bar was highest of the last x bars, you could use HighestBar to get the bar index of the highest high of the last n bars, then pass that index to High[bar index] to get the high of that bar.



    To add ticks to a specific value, you use TickSize,


    To Trigger the Alert you would use,


    Please let us know if you need further assistance.
    Alan P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by selu72, Today, 02:01 PM
    1 response
    4 views
    0 likes
    Last Post NinjaTrader_Zachary  
    Started by WHICKED, Today, 02:02 PM
    2 responses
    9 views
    0 likes
    Last Post WHICKED
    by WHICKED
     
    Started by f.saeidi, Today, 12:14 PM
    8 responses
    21 views
    0 likes
    Last Post f.saeidi  
    Started by Mikey_, 03-23-2024, 05:59 PM
    3 responses
    50 views
    0 likes
    Last Post Sam2515
    by Sam2515
     
    Started by Russ Moreland, Today, 12:54 PM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_Erick  
    Working...
    X