Merhabalar,
Aşağıdaki şekilde deneyebilirsiniz,
WAVE TREND OSCILLATOR AL VERENLER:
n1:=10;
n2:=21;
ap:=(H+L+C)/3;
esa:=mov(ap,n1,e);
d:=mov(abs(ap - esa),n1,e);
ci:=(ap-esa)/(0.015*d);
tci:=mov(ci,n2,e);
wt1:=tci;
wt2:=mov(wt1,4,s);
cross(wt1,wt2)
WAVE TREND OSCILLATOR SAT VERENLER:
n1:=10;
n2:=21;
ap:=(H+L+C)/3;
esa:=mov(ap,n1,e);
d:=mov(abs(ap - esa),n1,e);
ci:=(ap-esa)/(0.015*d);
tci:=mov(ci,n2,e);
wt1:=tci;
wt2:=mov(wt1,4,s);
cross(wt2,wt1)
iyi çalışmalar