Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Trouble Scaling out

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

    Trouble Scaling out

    After wrestling with the reference sample, I was able to come up with this, and I don't understand why it isn't working. Whenever I backtest it, it simply scales out everything at the set profit target, instead of scaling out half and letting the second half scale with the trailing stop.

    Code:
    public class jhk : Strategy
        {
            #region Variables
            // Wizard generated variables
            private int myInput0 = 1; // Default setting for MyInput0
            // User defined variables (add any user defined variables below)
            #endregion
    
            /// <summary>
            /// This method is used to configure the strategy and is called once before any strategy method is called.
            /// </summary>
            protected override void Initialize()
            {
                EntriesPerDirection = 1;
                EntryHandling         = EntryHandling.UniqueEntries;
                
                SetStopLoss(CalculationMode.Ticks, 10, false);
                SetProfitTarget("Long1a", CalculationMode.Ticks, 20);
                SetProfitTarget("Short1a", CalculationMode.Ticks, 20);
                SetTrailStop(CalculationMode.Ticks, 8);
    
                CalculateOnBarClose = true;
            }
    
            /// <summary>
            /// Called on each bar update event (incoming tick)
            /// </summary>
            protected override void OnBarUpdate()
            {
                // Condition set 1
                if (CrossAbove(SMA(6), SMA(10), 1)
                    
                {
                    EnterLong(1,"Long1a");
                    EnterLong(1, "Long1b");
                    DrawArrowUp("My up arrow" + CurrentBar, false, 0, 0, Color.Lime);
                }
    
                // Condition set 2
                if (CrossBelow(SMA(6), SMA(10), 1)
                    
                {
                    EnterShort(1, "Short1a");
                    EnterShort(1, "Short1b");
                    DrawArrowDown("My down arrow" + CurrentBar, false, 0, 0, Color.Red);
                }

    #2
    I suggest debugging your code as per here: http://www.ninjatrader-support.com/v...ead.php?t=3418

    Also: TraceOrders coudl be of value too. Please check out the docs.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    66 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    149 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    162 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    99 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    286 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X