Hi,
Was there a default smoothing for the old ADXDMStudy() function?
Specifically for this code line: "var vADXDM = new ADXDMStudy(28);"?
An old efs uses this code:
/*************************/
var vADXDM = new ADXDMStudy(28);
function preMain(){
...
}
function Main(){
if (
vADXDM.getValue(ADXDMStudy.PDI) > vADXDM.getValue(ADXDMStudy.NDI) &&
vADXDM.getValue(ADXDMStudy.ADX) >= 20
) onADXAction1()
...
}
/*************************/
But the EFS2 code requires both a length and a smoothing #,
i.e., adx(28, ??). So to convert the subject code line to EFS2 I would need the default smoothing if anyone knows what it would be.
The EFS Glossary doesn't give one.
Thank you.
Was there a default smoothing for the old ADXDMStudy() function?
Specifically for this code line: "var vADXDM = new ADXDMStudy(28);"?
An old efs uses this code:
/*************************/
var vADXDM = new ADXDMStudy(28);
function preMain(){
...
}
function Main(){
if (
vADXDM.getValue(ADXDMStudy.PDI) > vADXDM.getValue(ADXDMStudy.NDI) &&
vADXDM.getValue(ADXDMStudy.ADX) >= 20
) onADXAction1()
...
}
/*************************/
But the EFS2 code requires both a length and a smoothing #,
i.e., adx(28, ??). So to convert the subject code line to EFS2 I would need the default smoothing if anyone knows what it would be.
The EFS Glossary doesn't give one.
Thank you.
Comment