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 SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      32 views
      0 likes
      Last Post SalmaTrader  
      Started by CarlTrading, 07-05-2026, 01:16 PM
      0 responses
      20 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 06-17-2026, 10:32 AM
      0 responses
      12 views
      0 likes
      Last Post CaptainJack  
      Started by kinfxhk, 06-17-2026, 04:15 AM
      0 responses
      18 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 06-17-2026, 04:06 AM
      0 responses
      20 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X