Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

ternary operator logic

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

    ternary operator logic

    Hi, want to implement logic where
    if without Use higher time frame my conditions are (Close[1] > baseEMA[1]) && (baseEMA[1] < slowEMA[1]) always.
    if I use HTF then this condition is not relevant (Close[1] > baseEMA[1]) && (baseEMA[1] < slowEMA[1]).

    However if i follow logic below, then if UseHTF is selected then strategy will only execute limited trades, trades that are baseEMA[1] > slowEMA[1] and will not execute trades that are baseEMA[1] < slowEMA[1] and I would want to execute both trades if UseHTF is selected.

    && ((!UseHTF) ? ((Close[1] > baseEMA[1]) && (baseEMA[1] < slowEMA[1])) : !(Close[1] > baseEMA[1]) && (baseEMA[1] < slowEMA[1]))

    I hope i illustrated it correctly..

    #2
    Not sure what you are trying to do but if baseEMA[1] < slowEMA[1] needs to be always considered, you would be missing a set of these ().
    ((!UseHTF) ? ((Close[1] > baseEMA[1]) && (baseEMA[1] < slowEMA[1])) :!((Close[1] > baseEMA[1]) && (baseEMA[1] < slowEMA[1])))
    eDanny
    NinjaTrader Ecosystem Vendor - Integrity Traders

    Comment


      #3
      Hello tkaboris,

      Thanks for your post.

      eDanny is correct.

      A set of parentheses would need to be added to the code you shared which eDanny has highlighted in red on post # 2.

      If this does not resolve your inquiry, please provide a brief description explaining exactly what you are trying to accomplish so we may accurately assist.
      <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      43 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      20 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      29 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      46 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      38 views
      0 likes
      Last Post CarlTrading  
      Working...
      X