Architect Your Edge
Architect Your Edge
The brain of your strategy. Combine signals to create complex decision rules.
Detects when one data series crosses another. Essential for trend reversals.
Standard boolean logic to combine multiple conditions.
Output is True only if ALL inputs are True. Useful for requiring multiple confirmations (e.g., RSI < 30 AND Price > SMA).
Output is True if ANY input is True. Useful for alternative entry conditions.
Inverts the signal (True becomes False, False becomes True).
Checks if Value A is greater than, less than, or equal to Value B.
Connect RSI Value to Input A and set Input B (Threshold) to 50. Output will be True whenever RSI is above 50.
Maintains state based on Set and Reset signals. Useful for building state machines or remembering events until reset.
The output stays True after a "Set" signal, even if "Set" goes back to False. It only returns to False when a "Reset" signal is received. If both are True, "Set" usually takes priority.