Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SampleScaleOut Strategy

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

    #16
    Hi traderT, you will need to debug when the order at this level is placed, the order statement EnterLongLimit just allows you to place an order at a specified limit / level price. So in your case you need to define a condition that returns true when the level is approached as retracement, then you can go ahead and place your limit order.

    Comment


      #17
      Like this?

      So something like this? ...

      if ((Low[1] > entryAValue)
      && (Low[
      0] <= entryAValue)
      && (longCount == 0))
      {
      EnterLongLimit(entryAValue,
      "Buy1");
      SetProfitTarget(
      "Buy1", CalculationMode.Price, targetAValue);
      }

      ...but would this not execute the order on the next bar?

      Comment


        #18
        Correct this will place the order on the next bar, if you need intrabar processing you can try setting CalculateOnBarClose to false.

        Comment


          #19
          CalculateOnBarClose

          I was told to remove CalculateOnBarClose alltogether as there was a bug with it. See http://www.ninjatrader-support2.com/...ad.php?t=13276.

          Comment


            #20
            If you have removed it and need intrabar processing, set CalculateOnBarClose = false from the parent script. It is nested CalculateOnBarClose that produce errors.
            Josh P.NinjaTrader Customer Service

            Comment


              #21
              Nearly there

              So should I set CalculateOnBarClose=False in the strategy or in the indicator that is called from the strategy?

              Comment


                #22
                The parent script. The strategy calls the indicator therefore put it in the strategy.
                Josh P.NinjaTrader Customer Service

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by charlesugo_1, 05-26-2026, 05:03 PM
                0 responses
                51 views
                0 likes
                Last Post charlesugo_1  
                Started by DannyP96, 05-18-2026, 02:38 PM
                1 response
                142 views
                0 likes
                Last Post NinjaTrader_ChelseaB  
                Started by CarlTrading, 05-11-2026, 05:56 AM
                0 responses
                160 views
                0 likes
                Last Post CarlTrading  
                Started by CarlTrading, 05-10-2026, 08:12 PM
                0 responses
                96 views
                0 likes
                Last Post CarlTrading  
                Started by Hwop38, 05-04-2026, 07:02 PM
                0 responses
                275 views
                0 likes
                Last Post Hwop38
                by Hwop38
                 
                Working...
                X