aide formule triade pivot
Forums › ProRealTime forum Français › Support ProBuilder › aide formule triade pivot
- This topic has 6 replies, 3 voices, and was last updated 3 years ago by
Choliver.
-
-
03/18/2022 at 2:12 PM #190153
Bonjour
quelqu’un pourrait il m’aider pour la création de l affichage de la formule suivante sur les prix:
haut -2 <haut-1>haut 0 et bas -2 <bas-1>bas 0
haut -2 <haut-1>haut 0 et bas -2 <bas-1>bas 0 et cloture 0 <=bas-2
par avance merci
03/18/2022 at 3:01 PM #19015403/21/2022 at 9:38 AM #190240Ci-dessous le code de ton premier post sur les pivots hauts, à modifier pour les pivots bas, c’est très simple 🙂
12345678910111213//haut -2 <haut-1>haut 0 et bas -2 <bas-1>bas 0hh1 = high[2]<high[1] and high[1]>high[0] and low[2]<low[1] and low[1]>low[0]if hh1 thendrawpoint(barindex[1],high[1]) coloured("lightgreen")endif//haut -2 <haut-1>haut 0 et bas -2 <bas-1>bas 0 et cloture 0 <=bas-2hh2 = high[2]<high[1] and high[1]>high[0] and low[2]<low[1] and low[1]>low[0] and close<=high[2]if hh2 thendrawarrowdown(barindex,high) coloured("green")endifreturn03/21/2022 at 10:03 AM #19024304/05/2022 at 6:29 PM #191265Bonjour,
J’ai effectué les modifications concernant le “Pivot bas”.
Merci aussi à TheBaron 😉
J’ai un doute sur ma ligne 8.
Peux-tu me confirmer que cela te semble ok stp ?12345678910111213//haut -2 >haut-1<haut 0 et bas -2 >bas-1<bas 0hh1 = high[2]>high[1] and high[1]<high[0] and low[2]>low[1] and low[1]<low[0]if hh1 thendrawpoint(barindex[1],low[1]) coloured("lightgreen")endif//haut -2 >haut-1<haut 0 et bas -2 >bas-1<bas 0 et cloture 0 >=bas-2hh2 = high[2]>high[1] and high[1]<high[0] and low[2]>low[1] and low[1]<low[0] and close>=high[2]if hh2 thendrawarrowup(barindex,low-15*pipsize) coloured("red")endifreturnAussi, dans le code énoncé “Pivot Haut”.
Toujours en ligne 8 tu transcris ceci : cloture 0 <=bas-2
par ceci dans le code “close<=high[2]”Je ne comprends pas. Est-ce correct ?
Peux-tu me renseigner sur les 2 questions stp ?04/05/2022 at 7:08 PM #191267voila ma modif
//haut -2 <haut-1>haut 0 et bas -2 <bas-1>bas 0
hh1 = high[2]<high[1] and high[1]>high[0] and low[2]<low[1] and low[1]>low[0]
if hh1 then
drawpoint(barindex[1],high[1]) coloured(“green”)
endif//haut -2 <haut-1>haut 0 et bas -2 <bas-1>bas 0 et cloture 0 <=bas-2
hh2 = high[2]<high[1] and high[1]>high[0] and low[2]<low[1] and low[1]>low[0] and close<=low[1]
if hh2 then
drawarrowdown(barindex,high) coloured(“green”)
endifll1 = high[2]>high[1] and high[1]<high[0] and low[2]>low[1] and low[1]<low[0]
if ll1 then
drawpoint(barindex[1],low[1]) coloured(“red”)
endifll2 = high[2]>high[1] and high[1]<high[0] and low[2]>low[1] and low[1]<low[0] and close>=high[1]
if ll2 then
drawarrowup(barindex,low) coloured(“red”)
endif
return04/06/2022 at 1:07 PM #191332 -
AuthorPosts
Find exclusive trading pro-tools on