Webhook Message

Invalid Stop Loss Amount

Invalid stop loss amount.

This message indicates that the stopLoss.amount provided in the request is invalid. TradersPost requires that the stopLoss.amount be a valid positive number. If the stopLoss.amount does not meet these criteria, the request will be denied.

Invalid stopLoss.amount example:

{
    "ticker": "AAPL",
    "action": "buy",
    "stopLoss": {
        "type": "stop",
        "amount": "invalid"
    },
}

Valid stopLoss.amount example:

{
    "ticker": "AAPL",
    "action": "buy",
    "stopLoss": {
        "type": "stop",
        "amount": 10
    },
}

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