# 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="https://1740217496-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FfaGHqKUfUy1dxnpnFnAi%2Fuploads%2FSxzsDJ7HqNW1DJkWFbTS%2FScreenshot%202026-04-11%20at%2010.36.57%E2%80%AFAM.png?alt=media&#x26;token=b2299731-f7a4-4428-9f23-3b25591850d5" alt=""><figcaption></figcaption></figure> <figure><img src="https://1740217496-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FfaGHqKUfUy1dxnpnFnAi%2Fuploads%2FYZVoWEvHQa4tRgvPojYF%2FScreenshot%202026-04-11%20at%2010.36.53%E2%80%AFAM.png?alt=media&#x26;token=2885fca5-0648-4cc3-b858-81344ce8ccd4" 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="https://1740217496-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FfaGHqKUfUy1dxnpnFnAi%2Fuploads%2FL1p6VN75KAqYbJpJKISH%2FScreenshot%202026-04-11%20at%2010.45.27%E2%80%AFAM.png?alt=media&#x26;token=3937fd14-dfb9-4729-bb35-aecd31d85dd0" alt=""><figcaption></figcaption></figure>
