rebond sur points pivots
Forums › ProRealTime forum Français › Support ProScreener › rebond sur points pivots
- This topic has 4 replies, 3 voices, and was last updated 6 years ago by iggy.
Viewing 5 posts - 1 through 5 (of 5 total)
-
-
01/28/2018 at 6:58 PM #60755
Bonjour,
j’ai essayé de créer un screener avec des rebonds sur points pivots
Je ne sais pas si mon code ne pourrait pas être amélioré
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114Once dailyPivot = undefinedOnce dailyR1 = undefinedOnce dailyS1 = undefinedOnce dailyR2 = undefinedOnce dailyS2 = undefinedOnce dailyR3 = undefinedOnce dailyS3 = undefinedIf Day>Day[1] thenIf mode = 0 thendailyPivot = (DHigh(1) + DLow(1) + Close[1]) / 3Elsif mode = 1 thendailyPivot = (Open + DHigh(1) + DLow(1) + Close[1]) / 4Elsif mode = 2 thendailyPivot = (DHigh(1) + DLow(1) + Close[1]*2) / 4ElsedailyPivot = (Open*2 + DHigh(1) + DLow(1)) / 4EndifdailyR1 = 2*dailyPivot - DLow(1)dailyS1 = 2*dailyPivot - DHigh(1)dailyR2 = dailyPivot + (DHigh(1) - DLow(1))dailyS2 = dailyPivot - (DHigh(1) - DLow(1))dailyR3 = dailyR1 + (DHigh(1) - DLow(1))dailyS3 = dailyS1 - (DHigh(1) - DLow(1))Endifif close>=(open-close)*5 thendoji=1elsedoji=0endifif doji>=dailypivot thensignal=1elsesignal=0endifif close>=(open-close)*5 thendoji=1elsedoji=0endifif doji>=dailyR1 thensignal=1elsesignal=0endifIf close>=(open-close)*5 thendoji=1elsedoji=0endifif doji>=dailyR2 thensignal=1elsesignal=0endifIf close>=(open-close)*5 thendoji=1elsedoji=0endifif doji>=dailyR3 thensignal=1elsesignal=0endifIf close>=(open-close)*5 thendoji=1elsedoji=0endifif doji>=dailyS1 thensignal=1elsesignal=0endifIf close>=(open-close)*5 thendoji=1elsedoji=0endifif doji>=dailyS2 thensignal=1elsesignal=0endifIf close>=(open-close)*5 thendoji=1elsedoji=0endifif doji>=dailyS3 thensignal=1elsesignal=0endifSCREENER (SIGNAL)01/29/2018 at 9:21 AM #60800Une erreur récurrente pour un screener, c’est de mettre la condition à tester entre parenthèses, et c’est ce que tu as fait 🙂 Il faut la mettre entre crochets:
1SCREENER [SIGNAL]Sinon, je viens de retrouver ce code de screener pour la détection de rebonds sur les points pivots.
02/03/2018 at 5:11 PM #6134502/23/2018 at 2:51 PM #6369102/23/2018 at 2:52 PM #63692 -
AuthorPosts
Viewing 5 posts - 1 through 5 (of 5 total)