Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Stop Trading issue

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

    Stop Trading issue

    I have a strategy that I want to stop trading for the day after the first loss.

    Can't seem to get that figured out. It works sometimes but not others and not sure why.

    // at the first line of OnBarUpdate
    if (Bars.FirstBarOfSession)
    stopTrading = false;

    // last line of OnBarUpdate
    if (Position.GetProfitLoss(close,PerformanceUnit.Curr ency) < 0)
    stopTrading = true;


    // this is the last line of OnOrderUpdate
    if (Position.GetProfitLoss(close,PerformanceUnit.Curr ency) < 0)
    stopTrading = true;

    #2
    Hello,

    The reason why this most likely is doing this is that GetProfitLoss() give you unrealized PnL. What you wan is realized PnL after the first trade is completed most likely.

    For this please use this, I would set StopTrading variable right at the top of OnBarUpdate also.



    Let me know if I can be of further assistance.
    BrettNinjaTrader Product Management

    Comment


      #3
      So how do I get the realized pnl?

      Comment


        #4
        Hello,

        Please use the sample I posted in post 2 for this.



        Let me know if I can be of further assistance.
        BrettNinjaTrader Product Management

        Comment


          #5
          the sample didn't really help but your last reference did. thanks

          Comment


            #6
            Excellent. Let me know if you need further help.
            BrettNinjaTrader Product Management

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            633 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            364 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            105 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            567 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            568 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X