Here is an example where we send a $100 trailing stop amount. Since Tradovate does not support fetching quotes, you will need to include a signalPrice in your webhook JSON so that we are able to calculate your orders correctly. In this example we will calculate the starting trailing stop price as $18350
.
{
"ticker": "MNQ",
"action": "buy",
"orderType": "trailing_stop",
"signalPrice": 18250,
"trailAmount": 100
}
Language:JSON
Or if you want to send a percentage instead of a fixed dollar amount, you can do that as well using the trailPercent field.
{
"ticker": "MNQ",
"action": "buy",
"orderType": "trailing_stop",
"signalPrice": 18250,
"trailPercent": 5
}
Language:JSON
You can also send trailing stop orders along with your entry order as well. In the below example, the entry order will be a limit order with a limit price of $18250
and a trailing stop order with a starting trailing stop price of $18150
.
{
"ticker": "MNQ",
"action": "buy",
"orderType": "limit",
"limitPrice": 18250,
"stopLoss": {
"type": "trailing_stop",
"trailAmount": 100
}
}
Language:JSON
Or with a percent instead of an amount.
{
"ticker": "MNQ",
"action": "buy",
"orderType": "limit",
"limitPrice": 18250,
"stopLoss": {
"type": "trailing_stop",
"trailPercent": 100
}
}
Language:JSON
With the addition of trailing stops, Tradovate continues to offer robust tools for traders seeking to optimize their strategies. By providing a signal price in your webhook JSON, you can ensure accurate calculations and effective trade management. Whether you are placing a standalone trailing stop or combining it with an entry order, this new feature empowers you to trade more efficiently and confidently. Start leveraging trailing stops in your trading today and take your strategy to the next level.
DISCLAIMER:
Trading in the financial markets involves a significant risk of loss. The content and strategies shared by TradersPost are provided for informational or educational purposes only and do not constitute trading or investment recommendations or advice. The views and opinions expressed in the materials are those of the authors and do not necessarily reflect the official policy or position of TradersPost.
Please be aware that the authors and contributors associated with our content may hold positions or trade in the financial assets, securities, or instruments mentioned herein. Such holdings could present a conflict of interest or influence the perspective provided in the content. Readers should consider their financial situation, objectives, and risk tolerance before making any trading or investment decisions based on the information shared. It is recommended to seek advice from a qualified financial advisor if unsure about any investments or trading strategies.
Remember, past performance is not indicative of future results. All trading and investment activities involve high risks and can result in the loss of your entire capital. TradersPost is not liable for any losses or damages arising from the use of this information. All users should conduct their own research and due diligence before making financial decisions.