Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    BertrandNinjaTrader Customer Service

    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.
        BertrandNinjaTrader Customer Service

        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 OllieFeraher, 05-09-2024, 11:14 AM
                5 responses
                16 views
                0 likes
                Last Post MisterTee  
                Started by jackiegils, Yesterday, 11:05 PM
                1 response
                10 views
                0 likes
                Last Post marcus2300  
                Started by Skifree, Today, 02:50 PM
                0 responses
                8 views
                0 likes
                Last Post Skifree
                by Skifree
                 
                Started by owen5819, Today, 02:24 PM
                1 response
                12 views
                0 likes
                Last Post owen5819  
                Started by Skifree, 05-07-2024, 11:38 PM
                2 responses
                28 views
                1 like
                Last Post Skifree
                by Skifree
                 
                Working...
                X