I am using the following code to transmit a Bracket Buy order to Interactive Brokers:
parentID = ibc.PlaceOrder("MSFT", "BUY", 1000, "LMT", 27, 0, "GTC",
False );
ibc.PlaceOrder("MSFT", "SELL", 1000, "STP", 26, 26, "GTC", True, 100,
"", parentID );
(this is from the IB Controller documentation - thanks Thomasz).
My question is this: once this order has been executed and is live,
how would I amend the "SELL" stop order - for example, I may want to
raise it to 28?
Many thanks,
Alex
