Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

in 2 equal IF() did't run second action

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

    in 2 equal IF() did't run second action

    Good day.
    Give advice, please.
    I have code with 2 equal IF() and different action.
    Second action never runs.
    What can I do?

    Code:
    //8.30 - 13.30 LONG
    if (numberOfBars > 14 && 
    Position.MarketPosition == MarketPosition.Flat &&
    ToTime(Time[0]) >= 083000  && 
    ToTime(Time[0]) <= 133000) 			
    { 
        SetProfitTarget("", CalculationMode.Ticks, PT);
        SetStopLoss("", CalculationMode.Ticks, SL, false);
        EnterLongStop(N, V_line+3*TickSize, "");
    }	
    		
    //8.30 - 13.30 SHORT
    if (numberOfBars > 14 && 
    Position.MarketPosition == MarketPosition.Flat &&
    ToTime(Time[0]) >= 083000  && 
    ToTime(Time[0]) <= 133000)	
    { 
        SetProfitTarget("", CalculationMode.Ticks, PT);
        SetStopLoss("", CalculationMode.Ticks, SL, false);
        EnterShortStop(N, N_line-3*TickSize, "");
    }

    #2
    Same thing if to code like this:

    Code:
    if (numberOfBars > 14 && 
    Position.MarketPosition == MarketPosition.Flat &&
    ToTime(Time[0]) >= 083000  && 
    ToTime(Time[0]) <= 133000) 			
    { 
        SetProfitTarget("", CalculationMode.Ticks, PT);
        SetStopLoss("", CalculationMode.Ticks, SL, false);
        EnterLongStop(N, V_line+3*TickSize, "");
        EnterShortStop(N, N_line-3*TickSize, "");

    Comment


      #3
      Hello,
      Due to the Order Handling Rules for Managed Approached orders this is expected as you would not be able to submit an EnterLongStop() and EnterShortStop() at the same time.For more information on the Order Handling Rules for Managead orders please see the following link: http://ninjatrader.com/support/helpG...d_approach.htm To achieve what you are wanting to do you would need to use Unmanaged orders. For information on using Unmaganed Orders please see the following link: http://ninjatrader.com/support/helpG...d_approach.htm
      Cody B.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      579 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      334 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      554 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      551 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X