Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Multiple SetStopLoss & SetProfitTarget Orders Combine

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Multiple SetStopLoss & SetProfitTarget Orders Combine

    Trying to place multiple long orders with each having its own unique stop loss and take profit target. Once placed I can see separate SL and TP orders but somehow with quantity of combined orders. Please see the attached screenshot and parts of the strategy code below. Every SL and TP is having 3000 quantity instead of 1000 each.

    Please advise how can this be resolved. Thanks.

    Code:
    if (State == State.SetDefaults)
    {
    EntryHandling = EntryHandling.UniqueEntries;
    StopTargetHandling = StopTargetHandling.ByStrategyPosition;
    }
    
    if (Position.MarketPosition == MarketPosition.Flat {
    SetStopLoss("orderLong1", CalculationMode.Currency, 500, false);
    SetStopLoss("orderLong2", CalculationMode.Currency, 600, false);
    SetStopLoss("orderLong3", CalculationMode.Currency, 700, false);
    
    SetProfitTarget("orderLong1", CalculationMode.Currency, 250);
    SetProfitTarget("orderLong2", CalculationMode.Currency, 450);
    SetProfitTarget("orderLong3", CalculationMode.Currency, 650);
    
    EnterLong(1000, "orderLong1");
    EnterLong(1000, "orderLong2");
    EnterLong(1000, "orderLong3");
    }
    Click image for larger version

Name:	2022-07-15_20-37-58.jpg
Views:	335
Size:	89.5 KB
ID:	1208646
    Last edited by singjay; 07-15-2022, 07:57 PM.

    #2
    Hi singjay, thanks for posting. Its the StopTargetHandling setting you have. Set it to StopTargetHandling.PerEntryExecution to match the quantity of each entry execution.

    Kind regards,
    -ChrisL

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by abelsheila, 05-14-2025, 07:38 PM
    2 responses
    41 views
    0 likes
    Last Post hglover945  
    Started by nailz420, 05-14-2025, 09:14 AM
    1 response
    92 views
    0 likes
    Last Post NinjaTrader_ChristopherJ  
    Started by NinjaTrader_Brett, 05-12-2025, 03:19 PM
    0 responses
    446 views
    1 like
    Last Post NinjaTrader_Brett  
    Started by domjabs, 05-12-2025, 01:55 PM
    2 responses
    78 views
    0 likes
    Last Post domjabs
    by domjabs
     
    Started by Morning Cup Of Trades, 05-12-2025, 11:50 AM
    1 response
    109 views
    0 likes
    Last Post NinjaTrader_ChristopherJ  
    Working...
    X