Releases
WebsiteDocumentation
  • April 20th, 2025
  • Old Releases
    • March 22nd, 2025
    • March 18th, 2025
    • March 14th, 2025
    • March 6th, 2024
    • February 17th, 2025
    • February 16th, 2025
    • February 6th, 2025
    • February 5th, 2025
    • February 3rd, 2025
    • January 6th, 2025
    • November 29th, 2024
    • November 9th, 2024
    • November 5th, 2024
    • October 6th, 2024
    • August 23rd, 2024
    • August 12th, 2024
    • August 6th, 2024
    • August 4th, 2024
    • July 20th, 2024
    • July 6th, 2024
    • June 24th, 2024
    • June 1st, 2024
    • April 27th, 2024
    • April 13th, 2024
    • March 11th, 2024
    • March 9th, 2024
    • February 16th, 2024
    • February 13th, 2024
    • January 30th, 2024
    • January 20th, 2024
    • January 17th, 2024
    • January 16th, 2024
    • January 3rd, 2024
    • November 28th, 2023
    • November 24th, 2023
    • November, 15th, 2023
    • November 5th, 2023
    • October 20th, 2023
    • October 12th, 2023
    • September 13th, 2023
    • September 5th, 2023
    • September 3rd, 2023
    • June 3rd, 2023
    • May 29th, 2023
    • April 11th, 2023
    • March 31st, 2023
    • March 4th, 2023
    • February 27th, 2023
    • February 18th, 2023
    • December 21st, 2022
    • December 5th, 2022
    • December 3rd, 2022
    • November 28th, 2022
    • October 21st, 2022
    • October 4th, 2022
    • July 20, 2022
    • July 19, 2022
    • July 1, 2022
    • June 17, 2022
    • May 31, 2022
    • May 11, 2022
    • May 7, 2022
    • May 4, 2022
    • May 2, 2022
    • April 5, 2022
    • April 4, 2022
    • April 2, 2022
    • March 19, 2022
    • February 19, 2022
    • February 12, 2022
    • February 5, 2022
Powered by GitBook
On this page
  • Improvements
  • Take Profit & Stop Loss in Webhook
  • Webhook Send Request
  • Dollar Amount Take Profit & Stop Loss
  • Trade Configuration

Was this helpful?

  1. Old Releases

October 21st, 2022

PreviousNovember 28th, 2022NextOctober 4th, 2022

Last updated 2 years ago

Was this helpful?

Improvements

This release contains improvements to the webhook payload to support sending optional take profit and stop loss information in the signal as well as a few other minor improvements.

Take Profit & Stop Loss in Webhook

Here is a simple example that shows how you can include a take profit limit price and a stop loss stop price with your entry signal.

{
   "ticker": "TSLA",
   "action": "buy",
   "price": 420.69,
   "takeProfit": {
       "limitPrice": 450.22
   },
   "stopLoss": {
       "stopPrice": 400.20
   }
}

Relative Percent Take Profit & Stop Loss

You can pass a percentage for TradersPost to use to calculate the take profit limit price and stop loss stop price.

{
   "ticker": "TSLA",
   "action": "buy",
   "price": 420.69,
   "takeProfit": {
       "percent": 10
   },
   "stopLoss": {
       "percent": 5
   }
}

Relative Amount Take Profit & Stop Loss

Or you can pass a dollar amount for TradersPost to use to calculate the take profit limit price and stop loss stop price.

{
   "ticker": "TSLA",
   "action": "buy",
   "price": 420.69,
   "takeProfit": {
       "amount": 50
   },
   "stopLoss": {
       "percent": 10
   }
}

Webhook Send Request

The Send Request functionality under webhooks has been updated to allow you to send a take profit and stop loss in your signal as well.

The Send Request functionality now has a confirm screen so you can review the JSON payload before sending it to the webhook.

Dollar Amount Take Profit & Stop Loss

In addition to the take profit and stop loss percent functionality, you can now configure a take profit or stop loss using a dollar amount instead of a percent.

Trade Configuration

On the trade screen you will now see a new section called Trade Configuration that shows the configuration used to executed the trade. Each trade that gets executed copies the settings from the strategy subscription so you can see what settings were used to execute a trade if you change the settings in your strategy subscription.