Is it possible to enter the limit order for entry and convert it to market without getting over fill status?
Initial entry statement : EnterLongLimit(10, 1430, “LE”) and then after getting a partial fill from “LE” order, I would like to issue below statement
EnterLongLimit(GetCurrentAsk()+2*ticksize,“LE”) // expecting this statement will modify the existing “LE” order in the exchange
Will this sequence of steps issues any cancel order? What happens if the quantity 10 gets executed in exchange before the second statement reaches the exchange? Is there any chance of getting over fill status?
Thanks,
gsreddy

Comment