1. Entry: Two separate entry orders (same direction)
EnterShortLimit(0, true, qty1, price, "SHORT_ENTRY_TP1");
EnterShortLimit(0, true, qty2, price, "SHORT_ENTRY_TP2");
2. Protective Orders:
o One shared price position for the stop loss:
SetStopLoss("SHORT_ENTRY_TP1", CalculationMode.Price, stopPrice, false);
SetStopLoss("SHORT_ENTRY_TP2", CalculationMode.Price, stopPrice, false);
o Two separate take profits:
ExitShortLimit(qty1, tp1Price, "SHORT_TP1", "SHORT_ENTRY_TP1");
ExitShortLimit(qty2, tp2Price, "SHORT_TP2", "SHORT_ENTRY_TP2");
Behavior during tests:
• Entries and stop loss work correctly
• TP orders are ignored with error messages:
"Exit() method ignored: Internal Order Handling Rules"
I know that the Managed Approach has a lot of limitations, and although my interpretation of the Internal Order Handling Rules shows that it is not possible to work the way I want, let me clear this out and ask the following questions:
1. Is this structure possible in managed mode?
2. If yes, what's the correct way to link TP orders to their respective entries?
Thank you for your guidance!

Comment