Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to apply lasttrade benefit or loss in a conditional order

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

    How to apply lasttrade benefit or loss in a conditional order

    I don't know how to write a (if) conditional order in which ninja executes a order when for example lasttrade was in profit.
    I want whenever the condition is ok it enterLong.

    I have write:

    protected overridevoid OnbarUpdate()
    { trade lastTrade= Performance.Alltrades[Performance.AllTrades.Count-1];

    if (High [0]> High [1] && lastTrade.ProfitPoints >0)
    enterLong,...

    also I had thought to write:

    if (High [0]> High [1] && lastTrade !=null && lastTrade.ProfitPoints >0)
    enterLong....


    These orders don't make error compiling but don't work as I want.

    Thank you.

    #2
    Nocash, please see the reference sample titled using trade performance statistics.
    AustinNinjaTrader Customer Service

    Comment


      #3
      Austin,
      The attached logic doesn't deal with unrealized PnL!
      So if you are in a short trade and have ENTERLONG(), it will close the short trade and enter a long trade even if this short trade exceeds your limits.

      Baruch

      Comment


        #4
        Thank you, but If I have understood, this sample is for session acumulated profit and I want it will count only realtime trades profit for lasttrade (last trade closed).
        Only if lasttrade was closed in benefit or losses.

        Thanks again.

        Comment


          #5
          My apologies, Nocash. In order to utilize the realtime trades, you could use this:
          Code:
          Performance.RealtimeTrades[Performance.RealtimeTrades.Count-1]
          AustinNinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          648 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          369 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          108 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          572 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          573 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X