When trading windows are defined, any trading signals submitted outside those windows are ignored by default.
Enabling this option allows exit or cancel signals to be processed even if they occur outside the defined trading windows. This is helpful if you want to ensure entries happen within your window but still allow exits or cancellations at any time.
{
"ticker": "SPY",
"action": "buy"
}
{
"ticker": "SPY",
"action": "exit"
}
If this option is enabled, the exit signal will be processed. If it's disabled, the signal will be ignored.
You also have the option to send a ignoreTradingWindows
field in your webhook payload to ignore the trading windows for that signal. This gives you more control over which signals are allowed to be processed outside of the trading windows.
{
"ticker": "SPY",
"action": "exit",
"ignoreTradingWindows": true
}