[Category("StochRSI")]
public int UParm4
{
get {return uparm4;}
set {uparm4 = Math.Max(0, value);}
}
The problem is that when I try to optimize I'm not able to set a range of values for any parameters that have their category set to anything other than "Parameters". These variables are limited to only one value and can not be optimized.
Is there a way I can accomplish grouping parameters and have them available for optimization?

Comment