Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 ETFVoyageur, 04-30-2024, 02:04 PM
      7 responses
      43 views
      0 likes
      Last Post eDanny
      by eDanny
       
      Started by f.saeidi, Today, 07:07 AM
      5 responses
      14 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by Creamers, 04-27-2024, 05:32 AM
      9 responses
      60 views
      0 likes
      Last Post Creamers  
      Started by cmtjoancolmenero, 04-29-2024, 03:40 PM
      19 responses
      59 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by samish18, 04-17-2024, 08:57 AM
      26 responses
      116 views
      0 likes
      Last Post samish18  
      Working...
      X