Hi,
Are there EFS2 versions of the following Juric functions?
JurikDMXStudy()
JurikJMAStudy()
JurikRSXStudy()
JurikVELStudy()
Also, I've tried the following three versions of the same script but they return null values for JuricJMAStudy().
Any ideas as to why they don't plot?
or
or
Thanks
Wayne
Are there EFS2 versions of the following Juric functions?
JurikDMXStudy()
JurikJMAStudy()
JurikRSXStudy()
JurikVELStudy()
Also, I've tried the following three versions of the same script but they return null values for JuricJMAStudy().
Any ideas as to why they don't plot?
PHP Code:
debugClear();
var vJMA1 = new JurikJMAStudy(5, -100,0, "Close");
function preMain() {
setPriceStudy(true);
setStudyTitle("JMA (5)");
setCursorLabelName("JMA1", 0);
}
var bInit = false;
function main() {
if(bInit == false){
vJMA1 = new JurikJMAStudy(5, -100, "Close");
bInit = true;
}
debugPrintln(vJMA1.getValue(JurikJMAStudy.JMA));
// return new Array(vJMA1.getValue(JurikJMAStudy.JMA));//prints out NULL for all values
return vJMA1.getValue(JurikJMAStudy.JMA);
}
PHP Code:
debugClear();
function preMain() {
setPriceStudy(true);
setStudyTitle("JMA (5)");
setCursorLabelName("JMA1", 0);
}
var bInit = false;
var vJMA1 = null;
function main() {
if(bInit == false){
vJMA1 = new JurikJMAStudy(5, -100, 0, "Close");
bInit = true;
}
debugPrintln(vJMA1.getValue(JurikJMAStudy.JMA));//prints out NULL for all values
// return new Array(vJMA1.getValue(JurikJMAStudy.JMA));
return vJMA1.getValue(JurikJMAStudy.JMA);
}
PHP Code:
debugClear();
var vJMA1 = new JurikJMAStudy(5, -100,0, "Close");
function preMain() {
setPriceStudy(true);
setStudyTitle("JMA (5-Price1)");
setCursorLabelName("JMA1", 0);
}
var bInit = false;
function main() {
if(bInit == false){
bInit = true;
}
if(vJMA1.getValue(JurikJMAStudy.JMA) != null) var vJMA1Plot = vJMA1.getValue(JurikJMAStudy.JMA);
debugPrintln(vJMA1Plot);
return vJMA1Plot;
}
Wayne
Comment