Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Stopping Strategy

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

    #16
    Using on Forex, so wanted to clsoe out with gain of 10 pips.

    Comment


      #17
      Then you likely would need to try 10 * 0.0001 instead of just 10.

      Comment


        #18
        Thanks, I'll give that a try.
        Jim

        Comment


          #19
          Note: Might be different on the JPY pairs, like 10 * 0.01.

          Comment


            #20
            Understood,
            Thanks

            Comment


              #21
              Stop Strategy after certain profit gain in pips

              In case it helps anyone, this is the coding that works for closing positions, and stopping a strategy, after reaching a certain pip gain, on GBP, including unrealized and realized profit:

              // If the profit on real-time trades is >= 20 pips stop trading
              if ((Performance.AllTrades.TradesPerformance.Points.C umProfit + Position.GetProfitLoss(Close[0],PerformanceUnit.Points) >= 20*.0001))
              {
              StopStrategy();
              return;
              }
              Thanks NinjaTrader_Dierk for your help.

              Comment


                #22
                Jim, or anyone else. Use the variable TickSize in place of 0.0001 because it has the same value but NT automatically changes it for other pairs like USDJPY with a different ticksize.

                Wayne

                Comment


                  #23
                  Stopping Strategy

                  Thanks Wayne,
                  That is excellent,
                  Jim

                  Comment

                  Latest Posts

                  Collapse

                  Topics Statistics Last Post
                  Started by Geovanny Suaza, 02-11-2026, 06:32 PM
                  0 responses
                  651 views
                  0 likes
                  Last Post Geovanny Suaza  
                  Started by Geovanny Suaza, 02-11-2026, 05:51 PM
                  0 responses
                  370 views
                  1 like
                  Last Post Geovanny Suaza  
                  Started by Mindset, 02-09-2026, 11:44 AM
                  0 responses
                  109 views
                  0 likes
                  Last Post Mindset
                  by Mindset
                   
                  Started by Geovanny Suaza, 02-02-2026, 12:30 PM
                  0 responses
                  574 views
                  1 like
                  Last Post Geovanny Suaza  
                  Started by RFrosty, 01-28-2026, 06:49 PM
                  0 responses
                  577 views
                  1 like
                  Last Post RFrosty
                  by RFrosty
                   
                  Working...
                  X