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 ETFVoyageur, Today, 04:00 PM
      2 responses
      17 views
      0 likes
      Last Post ETFVoyageur  
      Started by dward123, 01-02-2024, 09:59 PM
      3 responses
      168 views
      0 likes
      Last Post bjunaid
      by bjunaid
       
      Started by AaronKTradingForum, Today, 03:44 PM
      1 response
      8 views
      0 likes
      Last Post AaronKTradingForum  
      Started by Felix Reichert, 04-26-2024, 02:12 PM
      11 responses
      80 views
      0 likes
      Last Post Felix Reichert  
      Started by junkone, 04-28-2024, 02:19 PM
      7 responses
      83 views
      1 like
      Last Post junkone
      by junkone
       
      Working...
      X