Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to check properly ?

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

    How to check properly ?

    Hi,
    i have to check this condition for the last 5 Bars :
    if (Stochastics(3, 14, 7).D > 80
    and want to combine it e.g. with a Volume of the curent Bar-condition.
    Vol[0] >5000


    i can do it like this i think :

    if
    (Stochastics(3, 14, 7).D[0] > 80
    &&
    Vol[0] >5000
    (
    do that ...
    )

    else if
    (Stochastics(3, 14, 7).D[1] > 80
    &&
    Vol[0] >5000
    (
    do that ...
    )

    else if
    (Stochastics(3, 14, 7).D[2] > 80
    &&
    Vol[0] >5000
    (
    do that ...
    )

    and so on up to bar (5) back -- so i have this list that will be checked through every time.

    Is there an easier solution then this list to do this ?

    Thank
    max-td

    #2
    Yes, you can do something like:

    Code:
    if (MIN(Stochastics(3, 14, 7).D, 5)[0] > 80 && Volume[0] > 5000))
        // Do something here
    More information on the MIN() method - http://www.ninjatrader-support.com/H...inimumMIN.html
    RayNinjaTrader Customer Service

    Comment


      #3
      Thank you - works fine
      max-td

      Comment

      Latest Posts

      Collapse

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