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

can code be written to display PnL in ticks?

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

    can code be written to display PnL in ticks?

    I daytrade ES (mainly) and would love to see my trade performance in ticks rather than the Currency or Points. Is this possible using NinjaScript? Thanks.
    PS: I was unable to find an indicator that already does this.

    #2
    Hello JImJinNJ,

    The simple answer is there is not a supported way of looping through manual trades with a NinjaScript and getting the performance.

    However, with unsupported methods, it may be possible to get the trades made on the same trading day and calculate the performance and measure this in ticks.

    Below I am including some unsupported code to point you in the right direction. I cannot assist with this unsupported code.

    foreach (Account acct in Cbi.Globals.Accounts)
    {
    if (acct.Orders != null)
    {
    OrderCollection orders = acct.Orders;
    foreach (Order ord in orders)
    {
    Print(ord.ToString());
    }
    }
    }
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      thanks very much. this will get me started.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Felix Reichert, 04-26-2024, 02:12 PM
      10 responses
      68 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by PaulMohn, 04-24-2024, 03:49 AM
      4 responses
      36 views
      0 likes
      Last Post PaulMohn  
      Started by lightsun47, Today, 11:37 AM
      1 response
      9 views
      0 likes
      Last Post NinjaTrader_Zachary  
      Started by vitaly_p, Yesterday, 05:09 PM
      4 responses
      35 views
      0 likes
      Last Post vitaly_p  
      Started by bortz, 11-06-2023, 08:04 AM
      50 responses
      1,773 views
      0 likes
      Last Post carnitron  
      Working...
      X