Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

NT7 to NT8 Optimizer Metrics / Fitnesses

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

    NT7 to NT8 Optimizer Metrics / Fitnesses

    I would like to convert the custom optimizer types that another user was kind enough to share in this thread. (The original NT7 script is attached here).



    Looking through the scripts I can see several changes from NT7 to NT8 but I'm stuck at the error on on 'GetPerformanceValue'.

    Any help would be greatly appreciated!
    Attached Files

    #2
    Hello tmorgan4,

    Thank you for your post.

    Refer to the information at the following link: http://ninjatrader.com/support/helpG...on_fitness.htm

    I would recommend comparing the NinjaTrader 8 Optimizer Fitnesses to the Optimization Types in NinjaTrader 7.

    For example, Max Net Profit would use the following in NinjaTrader 7:
    Code:
    		public override double GetPerformanceValue(SystemPerformance systemPerformance)
    		{
    			return systemPerformance.AllTrades.TradesPerformance.GrossProfit + systemPerformance.AllTrades.TradesPerformance.GrossLoss;
    		}
    But in NinjaTrader 8 it would use the following:
    Code:
    		protected override void OnCalculatePerformanceValue(StrategyBase strategy)
    		{
    			Value = strategy.SystemPerformance.AllTrades.TradesPerformance.GrossProfit + strategy.SystemPerformance.AllTrades.TradesPerformance.GrossLoss;
    		}

    Comment


      #3
      Thanks for the help. This should get me on the right track.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      657 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      373 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      109 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      574 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      579 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X