Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Checking that a condition occurred during session

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

    Checking that a condition occurred during session

    Hello,

    For example, I want see if the price, anytime during the current session, was below some moving average.

    I was thinking about using the MRO, but I run on Range bars, so not sure how to see if most recent occurence was less than some time back.

    Am I on the right track here?

    #2
    Hello coolmoss,
    Thanks for writing in and I am happy to assist you.

    Please you this code to check if price was below SMA(14)
    Code:
    int i = MRO(delegate{return Close[0] < SMA(14)[0];}, 1, Bars.BarsSinceSession);
    You might want to replace Close[0] with Low[0] in case SMA has been above low but below close.

    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      Man, you guys are simply awesome. To get answers so freakin fast just makes my day a whole lot more enjoyable.

      Wish I could buy 'ya all a round!

      Comment


        #4
        Hello coolmoss,
        Glad your issue was resolved.
        Please let me know if I can assist you any further.
        JoydeepNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        602 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        347 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        103 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        559 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        559 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X