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 argusthome, 03-08-2026, 10:06 AM
      0 responses
      91 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      48 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      31 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      34 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      69 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X