Not sure what parameters you are refering to but you can also place the following into your premain:
function preMain() {
setPriceStudy(true); // study plots in price pane
setStudyTitle("Study");
setShowTitleParameters(false);
setShowCursorLabel(false); // supresses this study's label in cursor window
setCursorLabelName("Parm#1", 0);
setDefaultBarFgColor(Color.red, 0);
setDefaultBarThickness(1, 0);
setPlotType(PLOTTYPE_LINE, 0);
setShowCursorLabel(false, 0); //supresses this label in cursor window
setCursorLabelName("Parm#2", 1);
setDefaultBarFgColor(Color.red, 1);
setDefaultBarThickness(2, 1);
setPlotType(PLOTTYPE_LINE, 1);
setShowCursorLabel(false, 1); //supresses this label in cursor window
...
}
Hope this helps.
Jane
Comment