Skip to content

Signals

Turn indicator values into true/false trade conditions (crossovers, thresholds, and more).

  • And — True only when every input signal is true.
  • Between — True where low <= value <= high.
  • Crosses Above — True on the bar where a crosses from <= b to > b.
  • Crosses Below — True on the bar where a crosses from >= b to < b.
  • Delay — Shift the signal forward by N bars.
  • Edge Trigger — Fire only on the first bar of a true run (rising edge).
  • Equal — True where |a - b| is within tolerance.
  • Greater Than — True where a > b.
  • Hold — Latch the signal true for N bars after each rising edge.
  • Less Than — True where a < b.
  • Not — Invert a boolean signal.
  • Or — True when at least one input signal is true.
  • Xor — True when an odd number of input signals are true.