Logic Nodes
Nodes that make decisions based on data inputs.
Comparison Nodes
These nodes compare two numeric inputs and output a Boolean (True/False).
Greater Than ( > )
Returns True if Input A is strictly greater than Input B.
Output = A > BLess Than ( < )
Returns True if Input A is strictly less than Input B.
Output = A < BCross Over
Returns True ONLY on the specific candle where Input A crosses from below to above Input B. Crucial for signal generation to avoid repeated buy signals.
Cross Under
Returns True ONLY on the specific candle where Input A crosses from above to below Input B.
Boolean Logic
Combine multiple conditions to create complex triggers.
AND Gate
Returns True if ALL inputs are True.
OR Gate
Returns True if ANY input is True.
NOT Gate
Inverts the input (True becomes False, False becomes True).