Hi
Where can I find a general outline for study on study and learn how to do it?
-Rupe
Where can I find a general outline for study on study and learn how to do it?
-Rupe
var xMyStudy = null;
function main() {
if (xMyStudy == null) xMyStudy = sma(10, sma(5) );
return xMyStudy.getValue(0);
}
var xMyStudy1 = null;
var xMyStudy2 = null;
var bInit = false; // initialize flag
function main() {
if (bInit = false) {
xMyStudy1 = sma(5);
xMyStudy2 = sma(10, xMyStudy1);
bInit = true; // studies are now initialized
}
return xMyStudy2.getValue(0);
}
Comment