For

The For component iterates through the subcomponents depending on the index value specified, like a Fortran Do loop.
You can set the following properties for the For component:
start
Sets the starting value of the index.
end
Sets the closing price of the index.
step
Sets the update width for index updates.
About Referencing Index Values
To use the current index value from a subcomponent during a loop, it can be referenced in the $WHEEL_CURRENT_INDEX environment variable.
number of instances to keep
Specifies the maximum number of directories to keep for each index. If unspecified, all directories are saved.
For details, see For Component Run-time Behavior below.
For Component Run-time Behavior
When the For component runs for the first time, the component directory is copied with the index value appended. When all the subcomponents in the copied directory have finished executing, a new index value is calculated and further directories are copied based on that value.
This process is repeated sequentially until the index value exceeds the closing price. When the closing price is exceeded, the directory is copied to the original directory, and processing of the For component ends. Note that even if you set a negative value for step, if the opening price is > closing price, the operation will be successful. In this case, execution ends when the index falls below the closing price.
For example, a for component with start=1, end=3, step=2 is processed as follows:
- Copy
fordirectory asfor_1directory - Sequentially execute components in the
for_1directory - index Calculation 1 +2 = 3 => equal to the closing price of 3, run the next loop
- Copy
for_1directory asfor_3directory - Sequentially execute components in the
for_3directory - index Calculation 3 +2 = 5 => Since the closing price has exceeded 3, the closing process is performed.
- Copy
for_3directory asfordirectory
If the number of instance to keep value is set to nonzero, delete the old directories (such as for_1 and for_3) that exceed the number set after the 4, 7 operation.