# April 11th, 2026

### Bid-Ask Spread Filter Enhancements

We've introduced the `bidAskSpreadFilter` to signals, allowing you to manage it directly from the signal settings, in addition to the strategy settings.

**Example:**

```json
{
    "ticker": "SPY",
    "action": "buy",
    "bidAskSpreadFilter": 0.02
}
```

Additionally, we've added the `Exit bid-ask spread filter` to the strategy settings, complementing the existing `Entry bid-ask spread filter`. This enhancement enables control over both entry and exit spread filters directly from your strategy settings.

<div><figure><img src="/files/wXTmfAgcQvEUIwOp1xOD" alt=""><figcaption></figcaption></figure> <figure><img src="/files/0PlC1DmhBogQHZEan0QT" alt=""><figcaption></figcaption></figure></div>

#### New Feature: Override Market Price Type in Signal

You can now specify the market price type directly in the signal, giving you control over which quote value to use when planning a trade. Previously, this option was limited to the strategy settings, but now you can override it from the signal itself.

**Example:**

This example demonstrates how to set up a limit order using the `ask` price for buy signals and the `bid` price for sell signals.

```json
{
    "ticker": "SPY",
    "action": "buy",
    "orderType": "limit",
    "marketPriceType": "ask_bid"
}
```

Value values are: `ask_bid`, `mark`, `ask`, `bid`, and `last`.

#### Enhanced "Close All" Functionality

The `Close All` button on the broker dashboard now includes an option to close only the profitable positions.

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


---

# 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/april-11th-2026.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.
