Last updated
Time to sleep after grid execution in seconds.
sleep_after_seconds -> decimalTime to sleep after grid execution (seconds). Accepts values of integer and decimal types. It is possible to use formula as value.
The orders will be executed with a delay of 300 seconds between executions.
“sleep_after_seconds”: “300"
The orders will be executed with a random delay of 30 - 90 seconds between executions.
“sleep_after_seconds”: “60*(0.5+random())"
60 * (0.5 + random())Last updated