what's the efs program code for this metastock formula:
MOV( MOV(C,3,S) - MOV(C,13,S), 3, S)
where C=close()
S=simple Mov Avg
thanks
MOV( MOV(C,3,S) - MOV(C,13,S), 3, S)
where C=close()
S=simple Mov Avg
thanks
var myLib = addLibrary("dsFunctions.efsLib");
var myStudy = null;
function main(){
if(myStudy==null) myStudy = sma(3, myLib.dsDiffSeries(sma(3), sma(13)));
//rest of your code
Comment