# December 5th, 2022

## Improvements

We added support for trailing stops in the TradeStation broker integration. You can now submit a trailing stop that is percentage or dollar based.

<figure><img src="/files/VJneOyXUBMBXpEP7rOSD" alt=""><figcaption><p>Order confirm model</p></figcaption></figure>

In your strategy subscription settings you can now also configure a trailing stop loss for subscriptions connected to TradeStation.

<figure><img src="/files/xH0egWGjlA3JoabURekb" alt=""><figcaption><p>Strategy subscription Stop Loss settings</p></figcaption></figure>

Or you can send your trailing stop along with your entry signal.

```json
{
    "ticker": "TSLA",
    "action": "buy",
    "price": "182.45",
    "stopLoss": {
        "type": "trailing_stop",
        "trailPercent": 1
    }
}
```

Or if you want to specify a trail price you can do that as well.

```json
{
    "ticker": "TSLA",
    "action": "buy",
    "price": "182.45",
    "stopLoss": {
        "type": "trailing_stop",
        "trailPrice": "5.00"
    }
}
```


---

# 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/december-5th-2022.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.
