# April 13th, 2024

## Tradovate Improvements

In this release, we added support for the ability to send a take profit and stop loss to Tradovate with your entry order. Just like with other brokers, you can send a `takeProfit` and `stopLoss` along with your entry order signal.

```json
{
    "ticker": "MNQ",
    "action": "buy",
    "price": 18179.25,
    "takeProfit": {
        "limitPrice": 18200.00
    },
    "stopLoss": {
        "type": "stop",
        "stopPrice": 18000.00
    }
}
```

You can read more about sending [take profits](https://docs.traderspost.io/docs/core-concepts/webhooks#signal-take-profit) and [stop losses](https://docs.traderspost.io/docs/core-concepts/webhooks#signal-stop-loss) in our documentation.

## Audit Log

To better keep track of the history of changes made to strategies, webhooks, subcriptions and other account related data, we've added an Audit Log that can be found under your user menu at the top right of the application.

<figure><img src="/files/XszfjEEoSLp2fG8HmnJS" alt=""><figcaption><p>TradersPost Audit Log</p></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-13th-2024.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.
