# October 25th, 2025

## Ignore Exits

You can now choose to **ignore exit signals** from your strategy while continuing to process entry signals.

When the `Ignore exits` setting is enabled, TradersPost will still execute entry orders as usual, but any exit signals will be ignored. This gives you the flexibility to manage exits manually, through another strategy, or with your own discretionary trading decisions.

You might enable `Ignore exits` if:

* You want to manually manage risk or take profits while still automating entries.
* You use a separate system or discretionary logic for exits.
* You’re testing or debugging entry behavior and don’t want exits to trigger orders.

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

## Delay

The `delay` field allows you to postpone the execution of a trade signal by a specified number of seconds. When included, TradersPost will wait the defined delay period after receiving the signal before executing the trade.&#x20;

You can include the delay in seconds within the webhook payload:

```json
{
    "ticker": "QQQ",
    "action": "buy",
    "delay": 60
}
```

In this example, the signal instructs TradersPost to buy QQQ, but execution will be delayed by **60 seconds** after the signal is received.

You may want to use `delay` if:

* You want to space out your entries to work around broker rate limits.
* Your strategy enters and then immediately exits so on the exit you may want to add a delay to give your entry enough time to fully execute.


---

# 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/october-25th-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.
