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

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 rocketman7, Today, 02:12 AM
        0 responses
        3 views
        0 likes
        Last Post rocketman7  
        Started by dustydbayer, Today, 01:59 AM
        0 responses
        1 view
        0 likes
        Last Post dustydbayer  
        Started by inanazsocial, Today, 01:15 AM
        0 responses
        3 views
        0 likes
        Last Post inanazsocial  
        Started by trilliantrader, 04-18-2024, 08:16 AM
        5 responses
        22 views
        0 likes
        Last Post trilliantrader  
        Started by Davidtowleii, Today, 12:15 AM
        0 responses
        3 views
        0 likes
        Last Post Davidtowleii  
        Working...
        X