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 cmoran13, 04-16-2026, 01:02 PM
        0 responses
        37 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        23 views
        0 likes
        Last Post PaulMohn  
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        162 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        98 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        152 views
        2 likes
        Last Post CaptainJack  
        Working...
        X