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.

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

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

{
    "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.

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

Last updated