Strategy Field

Allow add to position

By default, if there is already an open position for the specified ticker, the trade will be rejected. You can change this default behavior by checking Allow add to position in your strategy settings.

Alternatively, you can use action=add in your webhook request to add to an existing position. The position must already be open to add to it, and if an existing position does not exist, the trade will be rejected.

{
  "ticker": "AAPL",
  "action": "add",
}

To open a new position, you can send action=buy or action=sell in your webhook request.

{
  "ticker": "AAPL",
  "action": "buy",
}

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