Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Logic Formatting Question

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

    Logic Formatting Question

    Hello,

    I'm looking for a simpler way to do a test:

    If K had a value of less than 10 either one, two or three bars ago.

    (K[1] < 10) will test for one bar ago. Then using an OR statement (K[2] < 10) will test for two bars ago, etc. is what I have programmed in right now.

    Is there a way to put all three tests in one statement?

    Thanks,

    phoenix
    Last edited by phoenix; 01-16-2016, 01:49 PM.

    #2
    Hello phoenix,

    Thank you for writing in.

    You would be able to do the following:
    Code:
    // if K[1] OR K[2] OR K[3] had a value less than 10, do something
    if (K[1] < 10 || K[2] < 10 || K[3] < 10)
         // do something
    Please, let us know if we may be of further assistance.
    Zachary G.NinjaTrader Customer Service

    Comment


      #3
      Thanks Zachery_G

      Comment

      Latest Posts

      Collapse

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