Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Waiting for multiple bars...

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

    Waiting for multiple bars...

    I have this code which is supposed to execute an order when the ema crosses the middle bollenger band && price action closes 2 ticks above the outer band (I also have it cross the outer band to make sure its coming from outside the bands).

    Here is the code: (real tight bands)
    if (CrossAbove(EMA(Median, x), Bollinger(Median, 0.xx, xx).Lower, 1)
    && CrossAbove(EMA(Median, x), Bollinger(Median, 0.xx, xx).Middle, 1)
    && CrossAbove(Close, Bollinger(Median, 0.xx, xx).Upper, 1))

    I think the last line should attempt to fill the order if the price action closes 2 ticks from the outer band.

    Two questions:
    1. How make the last line close between to values, say 2 and 4 ticks...
    2. I want the pending order to cancel if it is not filled within 3 bars or less. Any help with the code would be great?

    #2
    TD-Trader747, I would suggest moving to the NinjaScript editor for this advanced order placement ideas, you could for example set the order to liveUntilCancelled and then CancelOrder it after 3 bars have elapsed with no fill. If you place limit orders they will be default expire on the next on bar update call, this link provides more detail - http://www.ninjatrader-support.com/H...verview36.html

    Not sure on your first question, maybe you can clarify it - thanks!

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    25 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    115 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    69 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    225 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    411 views
    0 likes
    Last Post CaptainJack  
    Working...
    X