Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How check if there is a low value of Stochastics below 20 with in 5 bars ?

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

    How check if there is a low value of Stochastics below 20 with in 5 bars ?

    Especially when I am using a multiple time frame ?

    For example, I wanna check the K value of Stochastics with BarsArray[1] as input.
    Code:
    MIN(Stochastics(BarsArray[1],5,8,3).K[0], 5).[0]<20;
    Is this the right way to code it ?

    Thanks.

    #2
    Hello wolfcuring, and thank you for your question.

    That is nearly correct. The Stochastic indicator's K values comprise a series, and the MIN indicator expects a series as its first argument. So you will actually want to use

    MIN(Stochastics(BarsArray[1],5,8,3).K, 5).[0]<20;


    Please let us know if there is anything else we can help with.
    Jessica P.NinjaTrader Customer Service

    Comment


      #3
      Thank you Jessica,

      When the codes go on, it shows some errors, (yes, this time I am using the primary data series)

      if (MIN(Stochastics(5,8,3).K, 5).[0] < 20)

      it says some expression expected, which I can not figure out.

      And it seems that every step, when I code the strategy, there is some error, Do I need a systematic training with Ninja ? Where could I get it?

      Comment


        #4
        Hello wolfcuring,

        I apologize, there was a typo in the code I sent you. The following will compile :

        if (MIN(Stochastics(5,8,3).K, 5)[0] < 20)

        By far the best place to get good with Ninja is the educational references page of the help guide. I am including a direct link.



        Please let us know if there are any other ways we can help.
        Jessica P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        597 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        343 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
        556 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        555 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X