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 Geovanny Suaza, 02-11-2026, 06:32 PM
                0 responses
                646 views
                0 likes
                Last Post Geovanny Suaza  
                Started by Geovanny Suaza, 02-11-2026, 05:51 PM
                0 responses
                367 views
                1 like
                Last Post Geovanny Suaza  
                Started by Mindset, 02-09-2026, 11:44 AM
                0 responses
                107 views
                0 likes
                Last Post Mindset
                by Mindset
                 
                Started by Geovanny Suaza, 02-02-2026, 12:30 PM
                0 responses
                569 views
                1 like
                Last Post Geovanny Suaza  
                Started by RFrosty, 01-28-2026, 06:49 PM
                0 responses
                573 views
                1 like
                Last Post RFrosty
                by RFrosty
                 
                Working...
                X