# June 7th, 2025

## Enhance Trading Windows

You can now send the `ignoreTradingWindows` parameter in a webhook to bypass the trading windows specified in the strategy subscription settings.

```json5
{
    "ticker": "SPY",
    "action": "exit",
    "ignoreTradingWindows": true
}
```

In addition to being able to explicitly control this from the webhook, you can enable the `Allow exits and cancels outside of the trading window` settings in your strategy subscription settings and exits and cancels will be allowed outside of the defined trading windows.

<figure><img src="/files/GizKbvcIIP4X0htUKUoI" alt=""><figcaption></figcaption></figure>

## Enhance Open Order Canceling

You now have more control over the open order canceling functionality by using the `cancel` property in the webhook JSON.&#x20;

<figure><img src="/files/mhVOcMhZthodIR41I6QV" alt=""><figcaption></figcaption></figure>

You can disable the implicit canceling of open orders like in the screenshot above and instead control when you want to cancel open orders more explicitly with the `cancel` property in your webhook JSON:

```json5
{
    "ticker": "SPY",
    "action": "exit",
    "cancel": true
}
```

The above will first cancel any open orders for `SPY` and then exit the open `SPY` position if it exists.

You can also do the reverse, leave the implicit canceling of open orders enabled in the strategy subscription settings and opt out of the open order canceling on some some webhook signals:

```json5
{
    "ticker": "SPY",
    "action": "exit",
    "cancel": false
}
```

The above will exit the open position for `SPY` if it exists but it will not cancel any open orders for `SPY`.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.traderspost.io/releases/old-releases/june-7th-2025.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
