Strategy Field

Use signal price for exits

If you check the Use signal price for exits checkbox, then the stopPrice and limitPrice parameter in your webhook will be used if they exist. If the parameters do not exist in your webhook, then the latest quote price will be used.

Here is an example of a limit order:

{
    "ticker": "AAPL",
    "action": "sell",
    "orderType": "limit",
    "limitPrice": 150
}

Here is an example of a stop_limit order:

{
    "ticker": "AAPL",
    "action": "sell",
    "orderType": "stop_limit",
    "stopPrice": 100,
    "limitPrice": 99
}

Ready to automate your trading? Sign up for free today.