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 a Add an OR to True False Conditions

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

    How a Add an OR to True False Conditions

    TrendingLong[0] = plotH1[0]>plotH2[0] ? 1 : 0;

    the above is correct and works as expected. Plots 1 when True and 0 when False

    I wish to have additional condition separate from this one also create the 1 for True as well NOT SURE OF THE SYNTAX FOR THAT

    Basic is this

    TrendingLong[0] = plotH1[0]>plotH2[0], OR plotH2[0]>plotH3[0] AND plotL1[0]>plotL2[0] ? 1 : 0;

    I AM SURE NO "OR" or "AND" but need commas and parenthesis in some form

    Thanks

    #2
    Hello DTSSTS,

    Thank you for your reply.

    Or would be written as ||, and && would be and, so:

    TrendingLong[0] = plotH1[0]>plotH2[0] || (plotH2[0]>plotH3[0] && plotL1[0]>plotL2[0]) ? 1 : 0;

    Please let us know if we may be of further assistance to you.
    Kate W.NinjaTrader Customer Service

    Comment


      #3
      Thanks , been a while since I looked at Open code

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by traderqz, Today, 12:06 AM
      5 responses
      8 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by Mongo, Today, 11:05 AM
      2 responses
      7 views
      0 likes
      Last Post Mongo
      by Mongo
       
      Started by guillembm, Today, 11:25 AM
      0 responses
      3 views
      0 likes
      Last Post guillembm  
      Started by Tim-c, Today, 10:58 AM
      1 response
      3 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by traderqz, Yesterday, 09:06 AM
      4 responses
      29 views
      0 likes
      Last Post traderqz  
      Working...
      X