Strategy Field

Allow signal entry price

If you check the Allow signal override 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": "buy",
    "orderType": "limit",
    "limitPrice": 150
}

Here is an example of a stop_limit order:

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

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