Lizards (Jeff Cooper)
Forums › ProRealTime Deutsch forum › ProScreener Support › Lizards (Jeff Cooper)
- This topic has 5 replies, 2 voices, and was last updated 7 years ago by Dennis.
-
-
02/12/2017 at 2:48 PM #24871
Hello, I’m just trying to write the screener “Lizards” by Jeff Cooper only unfortunately I get the not so right with the 10 lowest ?? Enclosed my “try”. Many thanks for the help.
12345678910111213c1 =(open > close)rem c5 = dhigh(0) + dlow(0)rem c6 = c5 / 2rem c7 = (open > c6 )rem c8 = dhigh(0) + dlow(0)rem c9 = c8 / 2rem c10 = (Dclose(0) > c9 )c2 = (DLow(0) < low[9])c3 = (low[1] > Dlow(0))c4 = (low[2] < low[1])SCREENER[c1 and c2 and c3 and c4 ] (Variation AS "% Letzten Balken")02/13/2017 at 11:09 AM #24947> For clarity of messages on ProRealCode’s forums, please use the “insert code PRT” button to separate the text of the code part! Thank you! <<
In order to help you the most, would you mind telling us what are the conditions of the Jeff Cooper‘s “Lizards” please?
02/13/2017 at 2:18 PM #24969Hello Nicolas excuse me.
To the criteria:
Lizards are a reversal pattern.
1. Both today’s opening and closing must be in the upper quarter of their day span (day one)
2. The day depth must represent a 10-day trading stance
3. Bought when we act 1/8 point tomorrow about the high of day one.
Here is my second try. And my problem is I do not get rule number 1.
Thank you
Dennis
1234567891011121314c1 = close > openignored, indicator1, ignored = CALL Donchian[10]c2 = (DLow(0) < indicator1)c10 = (DHigh(0) + Dlow(0))c11 = c10 / 4c3 = (DClose(0) > c11 )c12 = (DHigh(0) + DLow(0))c13 = c12 / 4c4 = (DOpen(0) > c13 )c5 = (Dhigh (1) > Dhigh(0))SCREENER[c1 and c2 and c3 and c4 and c5 ] (Variation AS "% Letzten Balken")02/13/2017 at 5:30 PM #2498902/13/2017 at 6:51 PM #24991Bonjour Nicolas
J’essaie maintenant via Google Translate en français.
Là encore, les critères (Adapté de Jeff Cooper “hit and run” stratégies)
Lizard est un modèle d’inversion
1. Tant nos jours, ainsi que la clôture du jour doit être dans le quart supérieur de la gamme de la journée.
2. Le bas de la journée doit être une négociation à faible 10 jours.
Mon problème est le numéro de la règle 1. Je ne sors pas !!
Voici un lien: http://www.hitnrun.de/lizards.htm
07/10/2017 at 1:38 PM #40245Hallo hier jetzt der richtige Code zu Jeff Coopers Lizards
12345678910111213ignored, indicator1, ignored = CALL Donchian[10]c2 = (DLow(0) < indicator1)c10 = (DHigh(0) - Dlow(0)) / 4c11 = (DHigh(0) - c10)c3 = (DClose(0) > c11)c12 = (DHigh(0) - DLow(0)) / 4c13 = (Dhigh(0) - c12)c4 = (DOpen(0) > c13)c5 = (Dhigh (1) > Dhigh(0))SCREENER[c2 and c3 and c4 and c5 ] (Variation AS "% Letzten Balken") -
AuthorPosts