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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
68 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
39 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
63 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
62 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
53 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment