Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Stategy stop enter positions

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

    Stategy stop enter positions

    Hello,
    I´m having problems with the stops of a strategy.

    Some times it stops entering the market when the conditions for entering are meet an only resumes when a new day starts..

    Here is the code:
    double stop; if (CurrentBar < Math.Max(PeriodStd, highWindow)) return; if (Bars.IsFirstBarOfSession) entriesPerWindowLeft = maxEntriesPerWindow; if (Position.MarketPosition == MarketPosition.Flat) SetStopLoss(CalculationMode.Currency, stopInCurrency); std0 = StdDev(PeriodStd)[0]; stop = std0< priceStopPoints ? std0* instrumentPointValue : priceStopPoints; double pullback = (Close[0] - MAX(highWindow)[0]) / std0; if (entriesPerWindowLeft > 0 && pullback >= DipBuy) { EnterLong(PositionLots); SetStopLoss(CalculationMode.Currency, stop); entriesPerWindowLeft--; } else if (pullback < DipBuy) { ExitLong(); entriesPerWindowLeft = maxEntriesPerWindow; }

    If a run a different version of the strategy, using the same stop value the situation does not occur

    if (CurrentBar<Math.Max(PeriodStd, highWindow)) return; if (Bars.IsFirstBarOfSession) entriesPerWindowLeft = maxEntriesPerWindow; if(Position.MarketPosition==MarketPosition.Flat) SetStopLoss(CalculationMode.Currency, stopInCurrency); double std0 = StdDev(PeriodStd)[0]; double pullback = (Close[0] - MAX(highWindow)[0]) / std0; if (entriesPerWindowLeft > 0 && pullback >= DipBuy) { EnterLong(PositionLots); entriesPerWindowLeft--; SetStopLoss(CalculationMode.Currency, stopInCurrency); } else if (pullback<DipBuy) { ExitLong(); entriesPerWindowLeft = maxEntriesPerWindow; }

    ​​​​​​​In attach is a print screen demonstrating the situation, the red and green vertical zones were trades should have taken place but at some point stop occurring. The two above blocks should (in my best judgment) yield the same numbers of trades, but that did not happened.

    Regards,

    Vava


    #2
    I forgot to mention that the behavior does not seem to occur in market replay

    Comment


      #3
      Hello vavatete,

      Thanks for your post.

      Please check the "Log" tab for any error messages related to your strategy during the course of its run. The log will list when the strategy was enabled as well as disabled and any orders it placed or errors it encountered.

      If no errors found then we suggest that you debug your strategy using print statements to determine the value of the variables employed in the trade entry/exit conditions when the entry/exits should have or should not have occurred. Print statements will send their information to the New>Ninjascript output window.

      Here is a link to our help guide's debugging tips for further information: https://ninjatrader.com/support/help...script_cod.htm

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      42 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      20 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      29 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      46 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      38 views
      0 likes
      Last Post CarlTrading  
      Working...
      X