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 tkaboris, Today, 05:13 PM
      0 responses
      2 views
      0 likes
      Last Post tkaboris  
      Started by GussJ, 03-04-2020, 03:11 PM
      16 responses
      3,281 views
      0 likes
      Last Post Leafcutter  
      Started by WHICKED, Today, 12:45 PM
      2 responses
      19 views
      0 likes
      Last Post WHICKED
      by WHICKED
       
      Started by Tim-c, Today, 02:10 PM
      1 response
      10 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by Taddypole, Today, 02:47 PM
      0 responses
      5 views
      0 likes
      Last Post Taddypole  
      Working...
      X