🔚Output Node

The Output Node serves as the (optional) final point of execution within the trading bot's directed graph on the MindTrade platform. When a output node is reached, the execution terminates. Output nodes can be used to return the output of a previous node as the whole program's output.

Characteristics

  • Fixed Position: The Output Node is always placed at the end of the node sequence in the graph.

  • Optional Presence: The execution of a program terminates when an output node or any node with no outgoing edges is reached. This means the usage of output nodes is not mandatory: if there is no need to return a value as program output, there is no need to use output nodes.

Last updated