Sorry for all the posts guys, but I have another one that I cannot figure out. I am using the following function parameter to create a "check box" (I am not sure of the technical term), in the edit studies window, so that I can choose whether or not to display some drawn lines. I want the default setting to be unchecked, but I have tried everything and the box is always checked. Thanks.
PHP Code:
var fp1 = new FunctionParameter("bShowL", FunctionParameter.BOOLEAN);
fp1.setName("Show Lines");
fp1.addOption("true");
fp1.addOption("false");
fp1.setDefault("false");
Comment