Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Break Even

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

    Break Even

    I have trouble to get my auto break even code to work with forex, working with ticks.
    I attached a sample code. Could you please have a look at it and tell what is wrong with it? Thanks a lot!
    Attached Files

    #2
    Hello moon_121,

    Thank you for your post.

    At first glance I do not see any items. Are there any errors in the Log tab of the NinjaTrader Control Center?

    Please refer to the following link for methods to debug your NinjaScript code: http://www.ninjatrader.com/support/f...ead.php?t=3418

    I look forward to your response.

    Comment


      #3
      Flat

      Hi Patrick,
      i find it a bit strange, that my the auto break even seems to draw the strategy performance down instead of lifting it. I get the best performance, if the break even trigger is so far of, that the break even never kicks in.
      An if the break even kicks in, the amount of trades more than doubles.
      I'm wondering if that has anything to do with the setup of a strategy.
      Do I need to create a flat state to level the PnL?
      Do I need to define "Open PnL: "
      And how do I prevent the strategy to enter again in the position that was stopped by a break even one bar ago?

      Code:
      // Beginning of Auto-Break-Even
                  // If not flat print our unrealized PnL
                    if (Position.MarketPosition != MarketPosition.Flat)
                    Print("Open PnL: " + Position.GetProfitLoss(Close[0], PerformanceUnit.Points));
              
                  if (Position.GetProfitLoss(Close[0], PerformanceUnit.Points) > trigger * TickSize)
                  {
                  SetStopLoss(CalculationMode.Price, Position.AvgPrice + 1 * TickSize);
                  }
                  // Ende of Auto-Break-Even

      Comment


        #4
        Originally posted by moon_121 View Post
        Hi Patrick,
        i find it a bit strange, that my the auto break even seems to draw the strategy performance down instead of lifting it. I get the best performance, if the break even trigger is so far of, that the break even never kicks in.
        An if the break even kicks in, the amount of trades more than doubles.
        I'm wondering if that has anything to do with the setup of a strategy.
        Do I need to create a flat state to level the PnL?
        Do I need to define "Open PnL: "
        And how do I prevent the strategy to enter again in the position that was stopped by a break even one bar ago?

        Code:
        // Beginning of Auto-Break-Even
                    // If not flat print our unrealized PnL
                      if (Position.MarketPosition != MarketPosition.Flat)
                      Print("Open PnL: " + Position.GetProfitLoss(Close[0], PerformanceUnit.Points));
         
                    if (Position.GetProfitLoss(Close[0], PerformanceUnit.Points) > trigger * TickSize)
                    {
                    SetStopLoss(CalculationMode.Price, Position.AvgPrice + 1 * TickSize);
                    }
                    // Ende of Auto-Break-Even
        This might open your eyes as to why? (NB: I am still too much of a scaredy-cat, not to use stops myself, just so you know).

        Last edited by koganam; 01-11-2013, 11:57 AM.

        Comment


          #5
          @koganam
          Nice interview. I noticed the same with stops. I usually set them way back and pull them up to break even if I feel insecure about a position. Probably a bad idea for the performance, but its let me sleep a bit sounder.
          Last edited by moon_121; 01-11-2013, 12:32 PM.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by rocketman7, Today, 09:41 AM
          2 responses
          4 views
          0 likes
          Last Post rocketman7  
          Started by traderqz, Today, 09:44 AM
          1 response
          2 views
          0 likes
          Last Post traderqz  
          Started by rocketman7, Today, 02:12 AM
          7 responses
          31 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by guillembm, Yesterday, 11:25 AM
          3 responses
          16 views
          0 likes
          Last Post NinjaTrader_Jesse  
          Started by junkone, 04-21-2024, 07:17 AM
          10 responses
          149 views
          0 likes
          Last Post NinjaTrader_BrandonH  
          Working...
          X