Start

[start] defines the mandatory entry point of every strategy. It appears exactly once and redirects execution to the first conditional block, selected by next_block_id.

Block declaration

A strategy can contain only one [start] block.

Minimal example

[start]
id            = "init"
next_block_id = "first_condition"

Block parameters

ParameterDescription
id
 Text
 Required
Unique identifier for the start block.
next_block_id
 Text
 Required
Identifier of the conditional block executed first.

This block performs no checks and produces no output; it only defines the initial jump to another block.