Signals, Gates, and Other Logic
These statements let one piece of logic drive another part of the model.
Signals
Section titled “Signals”Turn a signal on or off so a gate or another entity can react:
SIGNAL SEND "Reorder"SIGNAL CLEAR "Reorder"Controlling a gate
Section titled “Controlling a gate”Open, close, or flip a gate directly from logic. Once logic controls a gate this way, it stays under that control for the rest of the run:
OpenGate("Inbound")CloseGate("Inbound")ToggleGate("Inbound")Calling other logic
Section titled “Calling other logic”CALL PG "Name"runs a callable process group, optionally withASYNCorWITH attr = value.ProcessTable("Name")runs a process table: every matching row fires its own action logic.TimeTable("Name")draws from a time table, a distribution whose values change through the day, which you define in the Expression Builder.

