Ibiza Trader
Mitglied seit 11 Jahre 2 Monate
Metastock Formeln für Tushar Chande's R Squared gesucht
Ich suche die Formel für Tushar Chande´s Indikatoren R2 (R squared) und die Linear Regression Slope.
Tradet jemand danach?
Grüße.
Geschrieben von Ibiza Trader
am
Für welche Software?
In Metastock sind die beiden Indikatoren bereits integriert.
@ Ibiza Trader
Die nachfolgenden Formeln gelten für MetaStock:
R squared:
Pwr(Corr(Cum(1),C,14,0),2)
R squared geglättet:
Mov(Pwr(Corr(Cum(1),C,14,0),2)*100,14,S)
Linear Regression Slope:
Pe:=Input("Periods",3,1000,55);
Z:=LastValue(LinearReg(C,Pe));
Y:=LastValue(Cum(1))-Cum(1);
U:=Z-(LastValue(LinRegSlope(C,Pe))*Y);
R:=0-(LastValue(Cum(1))-Pe);
A:=U+Ref(C,R)-Ref(C,R);
A;
LinReg Indicator/Slope Formula:
{©Copyright 2003 Jose Silva}
{josesilva22@yahoo.com}
pds:=Input("LinReg periods)",2,2520,5)-1;
plot:=Input("plot: Indicator=1, Slope=2",1,2,1);
x:=Input("use Open=1, High=2, Low=3, Close=4, Volume=5",1,5,4);
x:=If(x=1,O,If(x=2,H,If(x=3,L,If(x=4,C,V))));
y:=pds*Sum(Cum(1)*x,pds)
-Sum(Cum(1),pds)*Sum(x,pds);
z:=pds*Sum(Pwr(Cum(1),2),pds)
-Pwr(Sum(Cum(1),pds),2);
z:=If(z=0,.000001,z);
LRS:=y/z;
LR:=
LRS*Cum(1)-LRS*Mov(Cum(1),pds,S)+Mov(x,pds,S);
If(plot=1,LR,0);
If(plot=1,LR,LRS)
Ich handle nicht danach.
Sixer