ModifyPendingOrderOperation
A structure that contains all operation parameters for changing a pending order
public struct ModifyPendingOrderOperation
{
public int OrderId; // pending order unique identifier
public double Volume; // order volume in lots
public double Price; // price at which a pending order is placed
public double TakeProfit; // take profit
public double StopLoss; // stop loss
}