MULTI FRACTALES ZIG ZAG SUPPORTS RESISTANCES
Forums › ProRealTime forum Français › Support ProBuilder › MULTI FRACTALES ZIG ZAG SUPPORTS RESISTANCES
- This topic has 12 replies, 3 voices, and was last updated 7 years ago by supertiti.
-
-
03/17/2017 at 1:49 PM #28928
Bonjour à tous
Un indicateur des plus populaires a attiré mon attention : le multifractales zig zag , en l’observant d’un peu plus près je crois que l’on peut améliorer le visuel des derniers signaux
en les habillant de lignes horizontales qui tiendraient lieu de support et résistance.
On pourrait je pense utiliser les commandes drawhline ou drawrectangle (ligne plus épaisse) pour souligner les derniers signaux.
je joins un graphe de l’idée comme illustration
toute aide est la bienvenue …
03/17/2017 at 2:01 PM #28931Voilà ce que ça peut donner. Comme tu le sais déjà, on ne peut pas changer les styles des objets graphiques, donc l’épaisseur des lignes des segments sera toujours par défaut assez fine.
12345678910111213141516171819202122232425262728293031defparam drawonlastbaronly = true//fractalscp = 20if high[cp] >= highest[(cp)*2+1](high) thenLLH = 1elseLLH = 0endifif low[cp] <= lowest[(cp)*2+1](low) thenLLL = -1elseLLL = 0endifif LLH = 1 thenLTOPy = high[cp]LTOPx = barindex[cp]endifif LLL = -1 thenLBOTy = low[cp]LBOTx = barindex[cp]endif//support/resistanceDRAWSEGMENT(LTOPx,LTOPy,barindex,LTOPy) COLOURED(255,0,0)DRAWSEGMENT(LBOTx,LBOTy,barindex,LBOTy) COLOURED(0,255,0)RETURN03/17/2017 at 2:55 PM #28940Merci , cela dégrossit bien ce que j’aimerai mais l’idéal serait d’avoir les segments sur les derniers signaux “close”
je joins un graphe où j’aimerai que les segments remplacent les flèches
12DRAWSEGMENT(TOPx,TOPy+ATR/2,barindex,TOPy+ATR/2) coloured(200,0,0,255)DRAWSEGMENT(BOTx,BOTy-ATR/2,barindex,BOTy-ATR/2) coloured(0,200,0,255)03/17/2017 at 3:03 PM #2894503/17/2017 at 3:31 PM #2895303/17/2017 at 3:53 PM #28957Bien alors pour déterminer les nouveaux fractals, il faut modifier les conditions pour qu’ils se forment, comme ceci:
12345678910111213141516171819202122232425262728293031defparam drawonlastbaronly = true//fractalscp = 20if close[cp] >= highest[(cp)*2+1](close) thenLLH = 1elseLLH = 0endifif close[cp] <= lowest[(cp)*2+1](close) thenLLL = -1elseLLL = 0endifif LLH = 1 thenLTOPy = close[cp]LTOPx = barindex[cp]endifif LLL = -1 thenLBOTy = close[cp]LBOTx = barindex[cp]endif//support/resistanceDRAWSEGMENT(LTOPx,LTOPy,barindex,LTOPy) COLOURED(255,0,0)DRAWSEGMENT(LBOTx,LBOTy,barindex,LBOTy) COLOURED(0,255,0)RETURNJe n’ai pas testé, dit nous si ça fonctionne !
03/17/2017 at 6:09 PM #2896903/17/2017 at 9:27 PM #2898803/18/2017 at 12:17 PM #2901803/18/2017 at 2:08 PM #29025Je confirme concernant l”épaisseur des lignes de segments.J”ai le meme probleme avec les triangles…
03/21/2017 at 1:20 PM #2928303/27/2017 at 2:06 PM #29985Bien sûr, ce code devrait retourner les valeurs qui croisent à la hausse ou à la baisse les derniers fractals détectés : (avec le dernier code donc)
1234567891011121314151617181920212223242526//fractalscp = 20if close[cp] >= highest[(cp)*2+1](close) thenLLH = 1elseLLH = 0endifif close[cp] <= lowest[(cp)*2+1](close) thenLLL = -1elseLLL = 0endifif LLH = 1 thenLTOPy = close[cp]endifif LLL = -1 thenLBOTy = close[cp]endifbullish = close crosses over LTOPybearish = close crosses under LBOTyscreener[bullish or bearish]Pas testé !
03/27/2017 at 3:51 PM #30020 -
AuthorPosts
Find exclusive trading pro-tools on