Example
Indicator A
default properties....
testInt = 5;
#region properties...
[Range(0, int.MaxValue)]
[NinjaScriptProperty]
public int testInt
{ get; set; }
somefunction(){
if(testInt <2)
}
My first thought was to create a static class "Config" and set the values in the config class to the property value. This is not working though. Granted i'm not the best at c#. More of a JS dev.
any suggestions here would be appreciated!

Comment