Scheduled execution from webhook
The delay field now supports more flexible scheduling options in addition to a simple number of seconds. You can use relative time expressions or absolute datetimes to schedule when a trade should execute.
Examples:
Delay by seconds:
{
"ticker": "QQQ",
"action": "buy",
"delay": 60
}
Delay using a relative expression:
{
"ticker": "QQQ",
"action": "buy",
"delay": "+5 minutes"
}
Delay until a specific datetime:
{
"ticker": "QQQ",
"action": "buy",
"delay": "2026-05-09T14:30:00-04:00"
}
Scheduled delays are limited to a maximum of 24 hours in the future.
Bug fixes
- Fixed entry lockout countdown staying accurate when the browser tab is in the background
- Fixed take profit and stop loss validation when a broker does not support bracket orders