I'm using NT7 to develop an auto-trading strategy and I'm using a combination of EntryLongStop or EntryShortStop (depending on my direction) and a SetStopLoss call.
In certain circumstances, I'd like to change the order prices before the order has been filled to narrow the range of the order such that both the stop loss price and the entry prices are moved closer to each other so that I can reduce my risk and improve my profits.
I see the "Unmanaged" method called ChangeOrder that takes an IOrder object (returned by the EnterLongStop or EnterShortStop) and three arguments, a quantity, a limit price and a stop price. How can I use this to narrow the order or do you have another way to achieve the same thing?
Regards,
Paul

Comment