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 GussJ, 03-04-2020, 03:11 PM
      14 responses
      3,244 views
      0 likes
      Last Post GussJ
      by GussJ
       
      Started by ArkansasClint, Today, 09:28 AM
      0 responses
      0 views
      0 likes
      Last Post ArkansasClint  
      Started by lorem, Today, 09:18 AM
      0 responses
      3 views
      0 likes
      Last Post lorem
      by lorem
       
      Started by hazylizard, Today, 08:38 AM
      4 responses
      11 views
      0 likes
      Last Post hazylizard  
      Started by geddyisodin, Today, 05:20 AM
      2 responses
      20 views
      0 likes
      Last Post geddyisodin  
      Working...
      X