Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Backtest Optimazation Rules?

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

    Backtest Optimazation Rules?

    If I have a strategy that has 2 parameters, lets call them A & B both can range from 1 to 100 and I want to optimize, but A must always be greater than B, is there anyway I can stop the optimizer from even trying the tests that don't fit the criteria?

    #2
    Hello drumuk,

    Thank you for your post and welcome to the NinjaTrader Support Forum!

    When setting the value you can make sure it's the max of either the other value or it's own. For example: set { greater = Math.Max(lesser, value); }

    Below is an example of how to set these properties:
    Code:
            #region Variables
    		private int greater = 20;
    		private int lesser = 10;
            #endregion
    		
            protected override void Initialize()
            {
    			
            }
    		
            protected override void OnBarUpdate()
            {
    			
            }
    		
            #region Properties
    		[Description("")]
    		[GridCategory("Parameters")]
    		public int Lesser
    		{
    			get { return lesser; }
    			set { lesser = Math.Max(1, value); }
    		}
    		[Description("")]
    		[GridCategory("Parameters")]
    		public int Greater
    		{
    			get { return greater; }
    			set { greater = Math.Max(lesser, value); }
    		}
            #endregion

    Comment


      #3
      Thanks, am I right in thinking that doesn't stop the backtest, but forces the parameters to be a valid setup?

      Comment


        #4
        Hello drumuk,

        That is correct, it would force the parameters to be correct when starting the strategy.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by aussugardefender, Today, 01:07 AM
        0 responses
        3 views
        0 likes
        Last Post aussugardefender  
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        238 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Started by TraderG23, 12-08-2023, 07:56 AM
        9 responses
        384 views
        1 like
        Last Post Gavini
        by Gavini
         
        Started by oviejo, Today, 12:28 AM
        0 responses
        4 views
        0 likes
        Last Post oviejo
        by oviejo
         
        Started by pechtri, 06-22-2023, 02:31 AM
        10 responses
        125 views
        0 likes
        Last Post Leeroy_Jenkins  
        Working...
        X