1. The strategy is unaware of the partial fill, and tries to modify the price to 99 by sending the same order with limit price set to 99, something like EnterLongLimit(2, 99, "LE");
2. The strategy detects the partial fill, and calls EnterLongLimit(1, 99, "LE").
3. Same as 2, but before the exchange receives the order with modified price, the previous order gets filled on the remaining contract.
In addition, does it make any difference if "unmanaged" order handling is used?
Thanks.

Comment