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

pnl del dia

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

    pnl del dia

    How do you obtain the pnl of the day for an account, not only for the asset where the strategy is, but for the entire account?
    thank you​

    #2
    Doesn't the Accounts tab show that for you?

    Comment


      #3
      yes of course but I say in script

      Comment


        #4
        Take a look here,


        You probably want AccountItem.RealizedProfitLoss

        Comment


          #5
          yes that is, thank you
          I suppose this gives the total, is there something that resets the pnl every new day?​

          Comment


            #6
            GrossRealizedProfitLoss is the accumulated account total and RealizedProfitLoss is the daily ????

            Comment


              #7
              I was giving all this a spin and everything works for me now except that the pnl of the accumulated account of the day appears as null until the closing of the first operation:
              protected override void OnAccountItemUpdate(Account account, AccountItem accountItem, double value)
              {
              AllOverAccount = (string.Format("{2}", account.Name, accountItem, value));
              if (accountItem == AccountItem.UnrealizedProfitLoss)
              {
              PnlNoRealizadoCuenta = TodoSobreCuenta;
              }
              if (accountItem == AccountItem.RealizedProfitLoss)
              {
              PnlRealizadoCuenta = TodoSobreCuenta;
              }
              }
              any ideas to make it read the nlp when the strategy starts?​

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by burtoninlondon, Today, 12:38 AM
              0 responses
              10 views
              0 likes
              Last Post burtoninlondon  
              Started by AaronKoRn, Yesterday, 09:49 PM
              0 responses
              14 views
              0 likes
              Last Post AaronKoRn  
              Started by carnitron, Yesterday, 08:42 PM
              0 responses
              11 views
              0 likes
              Last Post carnitron  
              Started by strategist007, Yesterday, 07:51 PM
              0 responses
              14 views
              0 likes
              Last Post strategist007  
              Started by StockTrader88, 03-06-2021, 08:58 AM
              44 responses
              3,983 views
              3 likes
              Last Post jhudas88  
              Working...
              X