Hope everyone is having a nice holiday weekend.
Let's say I have a long position in APPL with 10 shares and the current price is 100.
When the price is 110, I want to not only take profit (selling my 10 shares) but also immediately be short 10 shares in the same symbol, reversing my position.
I was thinking I could use a bracket order (parent being the order that initiated the long position) with the child being a sell limit order and its quantity = parent order's quantity + 20 (10 - 20 = -10). However, from my tests, the quantity of the child order must be equal to that of the parent. So using bracket orders wouldn't work.
How can I implement this? Limit on touch order with the auxPrice = limitPrice = 110 and quantity = 20 and submit this order separately after sending the order to initiate the long position? However, I don't want the LIT order to execute until after my order initiating my long position has been filled. How can I do this?
Let's say I have a long position in APPL with 10 shares and the current price is 100.
When the price is 110, I want to not only take profit (selling my 10 shares) but also immediately be short 10 shares in the same symbol, reversing my position.
I was thinking I could use a bracket order (parent being the order that initiated the long position) with the child being a sell limit order and its quantity = parent order's quantity + 20 (10 - 20 = -10). However, from my tests, the quantity of the child order must be equal to that of the parent. So using bracket orders wouldn't work.
How can I implement this? Limit on touch order with the auxPrice = limitPrice = 110 and quantity = 20 and submit this order separately after sending the order to initiate the long position? However, I don't want the LIT order to execute until after my order initiating my long position has been filled. How can I do this?