The IF condition in FYERS Automate is used to make a decision based on whether a condition is true or false. It helps your automation choose what to do next depending on the result of a check.
Unlike OR or AND, which only decide when to move forward, the IF condition decides which path the automation should take.
An IF condition evaluates a single rule, such as a portfolio check or any other condition node. When the rule is evaluated, the result is either true or false.
Based on this result, the automation continues along one of two paths:
Every IF block shows two output dots at the bottom:
You can connect different actions or condition blocks to each dot, allowing the automation to behave differently based on the result.
Suppose you add a portfolio check inside an IF condition.
This allows you to build logic like: “If this condition is met, do this. Otherwise, do something else.”
Last updated: 22 Dec 2025
This node is useful when you want to react to multiple possible outcomes, but take action for only the first condition that occurs.
When you add an ANY node to the canvas and add multiple conditions inside it, FYERS Automate continuously evaluates all those conditions at the configured check interval. The moment any one condition becomes true, the automation immediately moves forward through the branch connected to that condition.
Each condition inside the ANY node has its own outcome path. The branch connected to the condition that turns true is executed, while all other branches are skipped.
Every condition inside the ANY node is evaluated independently. When a condition evaluates to true, the automation follows the path connected to that condition’s output. If multiple conditions could eventually become true, only the first one that turns true is considered.
Once a branch is chosen, the ANY node does not wait for or evaluate the remaining conditions further during that run.
Suppose you add an ANY node with multiple checks such as a price condition, a portfolio condition, and a time-based condition. If the price condition becomes true first, the automation immediately follows the branch linked to that price condition. Even if the other conditions turn true later, they are ignored for that run.
This allows you to build logic like: “Take action based on whichever event happens first.”
| Scenario | What happens |
|---|---|
| One condition becomes true | The automation follows the branch connected to that condition. |
| Multiple conditions become true at different times | Only the first condition that turns true is considered. |
| A condition turns true after another branch is already chosen | It is ignored for that automation run. |
| I want the same action regardless of which condition becomes true | Use an OR condition instead of ANY. |
Last updated: 22 Dec 2025