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

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 judysamnt7, 03-13-2023, 09:11 AM
                  4 responses
                  59 views
                  0 likes
                  Last Post DynamicTest  
                  Started by ScottWalsh, Today, 06:52 PM
                  4 responses
                  36 views
                  0 likes
                  Last Post ScottWalsh  
                  Started by olisav57, Today, 07:39 PM
                  0 responses
                  7 views
                  0 likes
                  Last Post olisav57  
                  Started by trilliantrader, Today, 03:01 PM
                  2 responses
                  21 views
                  0 likes
                  Last Post helpwanted  
                  Started by cre8able, Today, 07:24 PM
                  0 responses
                  10 views
                  0 likes
                  Last Post cre8able  
                  Working...
                  X