Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Backtest Optimazation Rules?
Collapse
X
-
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?Tags: None
-
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
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
106 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
54 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
36 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
38 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
74 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment