Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

if and else if

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

    if and else if

    Hi...

    if one had rules to mean revert long or short...then separate rules for trends....then yet another for range trades and wanted them to all be in the same code...

    would it be best to use:

    if...

    if...

    if...

    To separate the code out OR

    if...

    else if...

    else if...

    and why?

    Lastly, any other consideration/tips when working with such a approach?

    #2
    I think I follow what you are asking.

    If you want any of the conditions to execute independently, use your upper example.

    If you want only the conditions that happen to execute in the order you else if, then use the lower.

    This might help: http://www.cprogramming.com/tutorial/lesson2.html



    Originally posted by birdog View Post
    Hi...

    if one had rules to mean revert long or short...then separate rules for trends....then yet another for range trades and wanted them to all be in the same code...

    would it be best to use:

    if...

    if...

    if...

    To separate the code out OR

    if...

    else if...

    else if...

    and why?

    Lastly, any other consideration/tips when working with such a approach?

    Comment


      #3
      That would depend on whether the conditions are mutually exclusive or not. If they are then use:
      if()

      else if( )


      otherwise, if more than one can be true at the same time then use consecutive if blocks,

      Hope that helps.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      633 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      364 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      105 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      567 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      568 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X