Hi,
The following is a snippet of my code, I'm getting error: "TypeError: LMA0 has no properties".
Please help. Thank you.
W
The following is a snippet of my code, I'm getting error: "TypeError: LMA0 has no properties".
Please help. Thank you.
W
PHP Code:
var xSMA = efsExternal("MA.efs", "close", fastMAlength);
var xLMA = efsExternal("MA.efs", "close", slowMAlength);
SMA0 = xSMA.getValue(0);
SMA1 = xSMA.getValue(-1);
SMA2 = xSMA.getValue(-2);
LMA0 = xLMA.getValue(0);
LMA1 = xLMA.getValue(-1);
LMA2 = xLMA.getValue(-2);
debugPrintln(LMA0);
Comment