Turtle Soup von Linda Raschke | |
Hallo,
diese Formel habe ich gefunden... ich würde gerne das "Grundgerüst" testen,da ich den Grundgedanken nicht schlecht finde. Leider befinden sich mehrere Fehler in der Formel (EL-Code)
Wer kann mir helfen ?
{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 Buy Stop} BuyCondition := L = LLV(L,20) AND BarsSince( Ref(L = LLV(L,20), -1) ) >3 ; If(BuyCondition, L ,0) {TURTLE SOUP Sell Entry} SellCondition := H = HHV(H,20) AND BarsSince( Ref(H = HHV(H,20), -1) ) >3 ; If(SellCondition, ValueWhen(2, H = HHV(H,20), H) ,0) {TURTLE SOUP Sell Stop} SellCondition := H = HHV(H,20) AND BarsSince( Ref(H = HHV(H,20), -1) ) >3 ; If(SellCondition, H ,0)
Danke und Gruß
|