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

Trade Object ProfitCurrency Calculation

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

    Trade Object ProfitCurrency Calculation

    Does ProfitCurrency include slippage and commission as part of its calculation?

    #2
    Hi parkinsonbr, thanks for posting. The commission and slippage are included in this trade performance value. You can test this by using the Print() method to print out data from the strategy you are testing:
    Code:
    if(SystemPerformance.AllTrades.Count > 0)
    {
      Trade lastTrade = SystemPerformance.AllTrades[SystemPerformance.AllTrades.Count - 1];
      Print(lastTrade.ProfitCurrency);
      Print(lastTrade.Commission);
    }
    If you see "0" on the commission value, you need to go to the Accounts tab of the Control Center>Right click the Sim101 account>Edit Account>and apply a commission template to the account you are testing on. Also set IncludeCommission = true in State.SetDefaults. The slippage will change the initial entry price, so that is included by default. Slippage is only applied to market orders.

    Kind regards,
    -ChrisL
    Chris L.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Irukandji, Yesterday, 02:53 AM
    2 responses
    17 views
    0 likes
    Last Post Irukandji  
    Started by adeelshahzad, Today, 03:54 AM
    0 responses
    3 views
    0 likes
    Last Post adeelshahzad  
    Started by CortexZenUSA, Today, 12:53 AM
    0 responses
    3 views
    0 likes
    Last Post CortexZenUSA  
    Started by CortexZenUSA, Today, 12:46 AM
    0 responses
    1 view
    0 likes
    Last Post CortexZenUSA  
    Started by usazencortex, Today, 12:43 AM
    0 responses
    5 views
    0 likes
    Last Post usazencortex  
    Working...
    X