Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Constrain parameter values?

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

    Constrain parameter values?

    Is it possible to constrain parameter values to certain acceptable values? For example if I have an int Parameter, can I constrain valid input values to the range 1 to 10. (Similar to ASP.NET validation controls for those familiar)

    #2
    overflowing,

    There is a section of code in the properties region where you can set a maximum or minimum value.

    For example :

    Code:
                    [Description("Number of bars used for calculation")]
    		[GridCategory("Parameters")]
    		public int Period
    		{
    			get { return period; }
    			set { period = Math.Max(1, value); }
    		}
    Adam P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    26 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    182 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    335 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    260 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X