Webhook Message

Invalid Take Profit Amount

Invalid take profit amount.

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

Invalid takeProfit.amount example:

{
    "ticker": "AAPL",
    "action": "buy",
    "takeProfit": {
        "amount": "invalid"
    },
}

Valid takeProfit.amount example:

{
    "ticker": "AAPL",
    "action": "buy",
    "takeProfit": {
        "amount": 10
    },
}

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