Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Within A Period

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

    Within A Period

    I am trying to create a condition where the DM- crossed DM+ within X bars.

    Using barsago seems to just return that specific number of bars

    I have this code. How could I change it to say the cross has happened within the last X (9) candles?

    Thanks Stefan

    CrossAbove(DM(DmiPeriod).DiMinus, DM(DmiPeriod).DiPlus, 1)

    #2



    Examples
    // Go short if CCI crossed above 250 within the last bar
    if (CrossAbove(CCI(14), 250, 1))
    EnterShort();

    // Go long if 10 EMA crosses above 20 EMA within the last bar
    if (CrossAbove(EMA(10), EMA(20), 1))
    EnterLong();

    // Go long we have an up bar and the 10 EMA crosses above 20 EMA within the last 5 bars
    if (Close[0] > Open[0] && CrossAbove(EMA(10), EMA(20), 5))
    EnterLong();

    Originally posted by delta20 View Post
    I am trying to create a condition where the DM- crossed DM+ within X bars.

    Using barsago seems to just return that specific number of bars

    I have this code. How could I change it to say the cross has happened within the last X (9) candles?

    Thanks Stefan

    CrossAbove(DM(DmiPeriod).DiMinus, DM(DmiPeriod).DiPlus, 1)

    Comment


      #3
      Thanks I thought

      // Go long we have an up bar and the 10 EMA crosses above 20 EMA within the last 5 bars
      if (Close[0] > Open[0] && CrossAbove(EMA(10), EMA(20), 5))



      That meant it only looked at the 5th bar back I did not realize it was looking at the whole 5 bar period.

      I do not know where the thanks button is otherwise I would send you one

      Comment


        #4
        Originally posted by delta20 View Post
        Thanks I thought

        // Go long we have an up bar and the 10 EMA crosses above 20 EMA within the last 5 bars
        if (Close[0] > Open[0] && CrossAbove(EMA(10), EMA(20), 5))


        That meant it only looked at the 5th bar back I did not realize it was looking at the whole 5 bar period.

        I do not know where the thanks button is otherwise I would send you one
        You cannot see the "THANKS" button that is on the same line as the "QUOTE" button that you used to reply to the post?

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        152 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        89 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        133 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        127 views
        1 like
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        107 views
        0 likes
        Last Post CarlTrading  
        Working...
        X