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 GLFX005, Today, 03:23 AM
      0 responses
      1 view
      0 likes
      Last Post GLFX005
      by GLFX005
       
      Started by XXtrader, Yesterday, 11:30 PM
      2 responses
      11 views
      0 likes
      Last Post XXtrader  
      Started by Waxavi, Today, 02:10 AM
      0 responses
      6 views
      0 likes
      Last Post Waxavi
      by Waxavi
       
      Started by TradeForge, Today, 02:09 AM
      0 responses
      12 views
      0 likes
      Last Post TradeForge  
      Started by Waxavi, Today, 02:00 AM
      0 responses
      2 views
      0 likes
      Last Post Waxavi
      by Waxavi
       
      Working...
      X