On running "Prev Month Low.efs" I get the message "The parameter is incorrect." On additional clicks, eSignal crashes.
ESignal (10.0.0 build 859) diagnostics checks out. Java has been updated (1.6.0 build 1.6.0_03-b05). The registry has been cleaned. The "Prev Week Low.efs" loads and works well. The efs is below. Suggetions?
********
function preMain() {
setPriceStudy(true);
setStudyTitle("Prev Month Low (PML)");
setCursorLabelName("PML");
setDefaultBarStyle(PS_SOLID);
setDefaultBarFgColor(Color.red);
setDefaultBarThickness(2);
setPlotType(PLOTTYPE_FLATLINES);
}
var bInit = false;
var xLow = null;
function main() {
if(bInit == false){
xLow = low(inv("M"));
bInit = true;
}
var vLow = xLow.getValue(-1);
if(vLow == null)
return;
return (vLow);
}
ESignal (10.0.0 build 859) diagnostics checks out. Java has been updated (1.6.0 build 1.6.0_03-b05). The registry has been cleaned. The "Prev Week Low.efs" loads and works well. The efs is below. Suggetions?
********
function preMain() {
setPriceStudy(true);
setStudyTitle("Prev Month Low (PML)");
setCursorLabelName("PML");
setDefaultBarStyle(PS_SOLID);
setDefaultBarFgColor(Color.red);
setDefaultBarThickness(2);
setPlotType(PLOTTYPE_FLATLINES);
}
var bInit = false;
var xLow = null;
function main() {
if(bInit == false){
xLow = low(inv("M"));
bInit = true;
}
var vLow = xLow.getValue(-1);
if(vLow == null)
return;
return (vLow);
}
Comment