PendingOrder.ModifyVolume() removes existing stop loss and take profit
PendingOrder.ModifyVolume() removes existing stop loss and take profit
04 Nov 2024, 11:48
Hi!
I have a manually placed a pending order in cTrader with a stop loss and take profit.
My cBot iterates pending orders and updates their volume in order to reflect a propotional risk of my balance, for example 1%,
However I have noticed that whenever I call PendingOrder.ModifyVolume() which successfully updates the volume, then my stop loss and take profit is gone.
foreach (var order in PendingOrders)
{
if (order.StopLoss.HasValue)
{
var preferredVolume = GetPreferredVolume(order); // method that calculates my preferred position size (volume)
var currentVolume = order.VolumeInUnits;
if (currentVolume != preferredVolume)
{
order.ModifyVolume(preferredVolume);
}
}
}
That results in the following log:
Looking in the log it looks that it calls ModifyPendingOrder under the hood with stop loss and take profit both being null.
How can order.ModifyVolume() affect the stop loss and take profit?
Thanks!
firemyst
26 Jan 2025, 13:42 ( Updated at: 14 Feb 2025, 18:16 )
Since nobody else cared to provide any feedback, what I would suggest if it's causing you grief is to delete the pending order and then create a new one with the SL, TP, Volume, and entry price.
@firemyst