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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        576 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        334 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        553 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        551 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X