Start

Use [start] to define the mandatory entry point of every strategy. It appears exactly once in that form and simply redirects the engine to another conditional block. The next_block_id key selects which block is executed first.

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.