Suche Formeln Fibonacci, Turtle-Soup (plus One), Jeff Cooper
Hi,
hat jemand eine Formel, wie man die Fibonacci-Retracements automatisch und permanent aktualisierend, bezogen zum Beispiel auf das Hoch der letzten 30 Balken, bzw. auf das Tief der letzen 30 Balken einzeichnen lassen kann ?
Weiterhin suche ich noch das Turtle Soup System incl. Plus One und die Jeff Cooper TS Formel, End of Day oder Intraday.
Kann mir jemand eine Quelle nennen ?
Geschrieben von Gast (nicht überprüft)
am
@ Beta-Tester
Nachfolgend die beiden Systeme:
{TURTLE SOUP Buy Entry}
BuyCondition := L = LLV(L,20) AND BarsSince( Ref(L = LLV(L,20), -1) ) >3 ;
If(BuyCondition, ValueWhen(2, L = LLV(L,20), L) ,0)
{TURTLE SOUP ( +1 ) Buy Entry}
BuyCondition := L = LLV(L,20) AND BarsSince( Ref(L = LLV(L,20), -1) ) >3 AND (C <= ValueWhen(2, L = LLV(L,20), L) ) ;
Ref(If( BuyCondition , ValueWhen(2, L = LLV(L,20), L) ,0), -1)
Den Jeff Cooper Indicator auf folgenden Seiten suchen:
http://eis.pl/kr/AFM/index-en.html
http://www.geocities.com/WallStreet/Floor/5645/scan.html
http://www.guppytraders.com/Metastock%20Formulas/metastock%20formula%201.htm
Sixer
@ Beta-Tester
Hier auch noch die Formeln von Jeff Cooper:
Jeff Cooper 180's Buy
A:Close
B:{MA}Ref(C,-1)<Mov(C,10,S) AND Ref(C,-1)<Mov(C,50,S)
AND C>Mov(c,10,S) AND C>Mov(C,50,S)
C:{Breakout}Ref(C,-1)<=((Ref(H,-1)-Ref(L,-1))*.25)+Ref(L,-1)
AND C>=H-(H-L)*.25
D:{Entry}HHV(H,2)+.125
E:{Stop}HHV(H,2)+.125-1
Jeff Cooper 180's Sell
A:Close
B:{MA}Ref(C,-1)>Mov(C,10,S) AND Ref(C,-1)>Mov(C,50,S)
AND C<Mov(c,10,S) AND C<Mov(C,50,S)
C:{Breakout}Ref(C,-1)>=((Ref(H,-1)-Ref(L,-1))*.25)+Ref(H,-1)
AND C<=L+((H-L)*.25)
D:{Entry}LLV(L,2)-.125
E:{Stop}LLV(L,2)-.125+1
Jeff Cooper Lizards Buy
A:close
B:{Signal}O>H-(H-L)*.25 AND C>H-(H-L)*.25 AND
L<Ref(LLV(L,10),-1)
C:{entry}H+.125
D:{Stop}H+1.125
Filter:O>H-(H-L)*.25 AND C>H-(H-L)*.25 AND
L<Ref(LLV(L,10),-1)
Jeff Cooper Lizards Sell
A:close
B:{Signal}O<L+(H-L)*.25 AND C<L+(H-L)*.25 AND
H>Ref(HHV(H,10),-1)
C:{entry}L-.125
D:{Stop}L-1.125
Filter:O<L+(H-L)*.25 AND C<L+(H-L)*.25 AND
H>Ref(HHV(H,10),-1)
Jeff Cooper Slingshots Buy
A:Close
B:{Range breakout}Ref(H,-1)>=Ref(HHV(H,40),-1)
AND L<Ref(L,-1)-.125
C:{entry}If(O>Ref(H,-1)+.125,O,0)
D:{Stop}If(If(O>Ref(H,-1)+.125,O,0)=O,Ref(O,-1)-2,0)
Filter:Ref(H,-1)>=Ref(HHV(H,40),-1)
AND L<Ref(L,-1)-.125
Jeff Cooper Slingshots Sell
A:Close
B:{Range breakout}Ref(L,-1)<=Ref(LLV(L,40),-1)
AND H>Ref(H,-1)+.125
C:{entry}If(O<Ref(L,-1)-.125,O,0)
D:{Stop}If(If(O<Ref(L,-1)-.125,O,0),Ref(O,-1)+2,0)
Filter:Ref(L,-1)<=Ref(LLV(L,40),-1)
AND H>Ref(H,-1)+.125
Jeff Cooper Whoops Sell
A:close
B:C<Mov(C,10,S) AND C<Mov(C,50,S) AND
O>Ref(C,-1)+.25
C:{Entry}Ref(C,-1)-.125
D:{Stop}Ref(C,-1)-.125+1
Filter:C<Mov(C,10,S) AND C<Mov(C,50,S) AND
O>Ref(C,-1)+.25
A:Close
B:ADX(14){The higher the better}
C: PDI(14)>MDI(14)
D:If(L<Ref(L,-1) and Ref(L,-1)<Ref(L,-2) and
Ref(L,-2)<Ref(L,-3),1,0)
E:{Entry}HHV(H,3)+.125
F:{stop}LLV(L,3)
Filter:ColB>30 and ColC and ColD=1
1234's Sell
A:Close
B:ADX(14){The higher the better}
C: PDI(14)<MDI(14)
D:If(H>Ref(H,-1) and Ref(H,-1)>Ref(H,-2) and
Ref(H,-2)>Ref(H,-3),1,0)
E:{Entry}LLV(L,3)-.125
F:{stop}HHV(H,3)
Filter:ColB>30 and ColC and ColD=1
Sixer