Point pivot mensuel
Forums › ProRealTime forum Français › Support ProOrder › Point pivot mensuel
- This topic has 11 replies, 7 voices, and was last updated 1 year ago by Nightster.
-
-
10/30/2019 at 9:52 AM #111617
Bonjour,
Dans mon programme j’ai besoin d’implémenter le point pivot mensuel or j’ai l’impression que c’est tout le temps le point pivot journalier qui est codé et lu…
Voici la partie de code sur le point pivot :
point pivot1234567// pivotcloture=DClose(1)pivotJ=(DHigh(1) + DLow(1) + DClose(1))/3if OpenDayOfWeek=1 thenpivotJ=(DHigh(2) + DLow(2) + DClose(2))/3cloture=DClose(2)endifMerci de votre aide par avance
10/30/2019 at 1:28 PM #111656Le code du point pivot mensuel (complet avec les supports et résistances), est celui-ci (comprend également les différents modes de calcul de celui-ci):
1234567891011121314151617181920212223mode = 0If Month<>Month[1] thenmonthlyHigh = Highest[BarIndex - lastMonthBarIndex](High)[1]monthlyLow = Lowest[BarIndex - lastMonthBarIndex](Low)[1]lastMonthBarIndex = BarIndexIf mode = 0 thenmonthlyPivot = (monthlyHigh + monthlyLow + Close[1]) / 3Elsif mode = 1 thenmonthlyPivot = (Open + monthlyHigh + monthlyLow + Close[1]) / 4Elsif mode = 2 thenmonthlyPivot = (monthlyHigh + monthlyLow + Close[1]*2) / 4ElsemonthlyPivot = (Open*2 + monthlyHigh + monthlyLow) / 4EndifmonthlyR1 = 2*monthlyPivot - monthlyLowmonthlyS1 = 2*monthlyPivot - monthlyHighmonthlyR2 = monthlyPivot + (monthlyHigh - monthlyLow)monthlyS2 = monthlyPivot - (monthlyHigh - monthlyLow)monthlyR3 = monthlyR1 + (monthlyHigh - monthlyLow)monthlyS3 = monthlyS1 - (monthlyHigh - monthlyLow)Endif11/02/2019 at 9:58 PM #111917Merci pour votre réponse
08/18/2020 at 9:00 PM #141948Bonjour Nicolas,
Dans cette formule il me semble qu’il y a un problème:
1monthlyPivot = (monthlyHigh + monthlyLow + Close[1]) / 3Close[1] va retourner la clôture de la bougie n-1 de votre unité de temps où vous lancez votre programme.
Or ici c’est pas ce que nous voulons: il nous faut en réalité la clôture du mois précédent.
La définition sauf erreur est bien : Pivot M = Plus Haut du mois précédent + plus Bas du mois précédent + Clôture du mois précédent / 3
08/19/2020 at 9:27 AM #14198307/21/2021 at 7:09 PM #173967Bonsoir, je suis désolé mais je ne comprends pas l’histoire des “différents modes”. À quoi cela sert-il ? Merci
07/22/2021 at 1:12 PM #173988Différents modes de calcul du point pivot. Il n’y a pas qu’une seule formule, chacun utilisera celui qui lui convient.
1 user thanked author for this post.
12/31/2021 at 12:36 PM #184195Bonsoir tout le monde
J’ai essayé votre formule pour le calcul du pivot mensuel, PRT me répond :
Erreur dans l’indicateur Pivot Mensuel
Un paramètre de type entier positif est attendu avec HighestY a t-il un problème du copier-coller ?
Merci pour réponse
05/30/2022 at 8:18 PM #19422209/12/2023 at 6:17 PM #22089909/13/2023 at 8:13 AM #22090909/18/2023 at 7:26 PM #221238 -
AuthorPosts
Find exclusive trading pro-tools on