Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Not working on Strategies Tab

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

    Not working on Strategies Tab

    The following does not work when applied to the Strategies tab

    It's working when applied to the chart.

    For some reason, I need it to work on the strategies tab.


    if (SystemPerformance.RealTimeTrades.Count > 0)
    {
    // Check to make sure there is at least one trade in the collection
    Trade lastTrade = SystemPerformance.RealTimeTrad es[SystemPerformance.RealTimeTrades.Count - 1];

    // Calculate the PnL for the last completed real-time trade
    double lastProfitCurrency = lastTrade.ProfitCurr ency;

    // Store the quantity of the last completed real-time trade
    double lastTradeQty = lastTrade.Quantity;

    // Pring the PnL to the NinjaScript Output window
    Print("The last trade's profit in currency is " + lastProfitCurrency);
    // The trade profit is quantity aware, we can easily print the profit per traded unit as well
    Print("The last trade's profit in currency per traded unit is " + (lastProfitCurrency / lastTradeQty));
    }

    Any workaround, please.

    Your help would be much appreciated!

    Thanks

    #2
    Nevermind,

    When I put the "IncludeTradeHistoryInBacktest = true;" to SetDefaults, it does not populate.

    But when I transferred it to Configure, it works.

    Comment


      #3
      Hello Danville.Sumobay,

      Thanks for your post.

      Please note that if you make changes to State.SetDefaults, you will likely need to remove and re add the script in order for the changes to be loaded. State.Configure will happen later in the script's life where a remove and re-add would not be needed.

      OnStateChange - https://ninjatrader.com/support/help...tatechange.htm

      Understanding NinjaScript LifeCycle - https://ninjatrader.com/support/help...fecycle_of.htm

      We look forward to assisting.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NullPointStrategies, Today, 05:17 AM
      0 responses
      37 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      124 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      64 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      41 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      46 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X