Hello, need a little help please. TIA
Basically need to plot a new efs that takes the results of an EFS (i've developed) which uses a Study (i.e. cci) as the data source.
var cciStudy = new CCIStudy(6, "H+L+C/3");
>>>>'("H+L+C/3")', is incorrect, what is correct syntax?
var emaOfCCI = new MAStudy(13, 0, cciStudy, CCIStudy.CCI, MAStudy.EXPONENTIAL);
function main() {
return emaOfCCI.getValue(MAStudy.MA);
}
>>>>Instead of 'MAStudy' above i'd like to use an EFS that i've developed, how would that look?
var XXX.EFSStudyOfCCI = new XXX.EFSStudy(13, 0, cciStudy, CCIStudy.CCI, XXX.EFSStudy);
>>>TIA!
Basically need to plot a new efs that takes the results of an EFS (i've developed) which uses a Study (i.e. cci) as the data source.
var cciStudy = new CCIStudy(6, "H+L+C/3");
>>>>'("H+L+C/3")', is incorrect, what is correct syntax?
var emaOfCCI = new MAStudy(13, 0, cciStudy, CCIStudy.CCI, MAStudy.EXPONENTIAL);
function main() {
return emaOfCCI.getValue(MAStudy.MA);
}
>>>>Instead of 'MAStudy' above i'd like to use an EFS that i've developed, how would that look?
var XXX.EFSStudyOfCCI = new XXX.EFSStudy(13, 0, cciStudy, CCIStudy.CCI, XXX.EFSStudy);
>>>TIA!
Comment