The ANY node is a Conditions node in FYERS Automate that allows your automation to move forward through different branches based on which condition becomes true first. As soon as one condition inside the ANY node evaluates to true, the automation follows that specific branch and ignores the remaining conditions.
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