un mix entre Reversal point indicator et Multi Fractals ZigZag
Forums › ProRealTime forum Français › Support ProBuilder › un mix entre Reversal point indicator et Multi Fractals ZigZag
- This topic has 4 replies, 2 voices, and was last updated 7 years ago by Nicolas.
-
-
06/06/2017 at 10:41 PM #37670
Voila ce que je voudrait faire : un mix entre Reversal point indicator et Multi Fractals ZigZag
https://www.prorealcode.com/prorealtime-indicators/multi-fractals-zigzag-highlow/
https://www.prorealcode.com/prorealtime-indicators/reversal-point-indicator/
En fait les signaux de Reversal point indicator PLUS le bout de code qui permet de determiner les derniers signaux pour avoir alternativement un rouge et un vert .
Soit tout ça
123456789101112131415161718192021222324252627282930313233343536373839//PRC_Reversal point indicator | indicator//09.04.2017//Nicolas @ www.prorealcode.com//Sharing ProRealTime knowledge//https://www.prorealcode.com/topic/need-help-coding-the-following-reversal-indicator/// LONG//Red/Green candle (reversal)//Bullish candle close above the open of the previous red candle//Space to the left (the low of the last 3 candles lower than the low of the last 50 candles)//default stochastic (8,3,3) was in the oversold area within the last 3 candlessto = stochastic[8,3]c1 = close[1]<open[1] and close>openc2 = close>open[1]c3 = lowest[3](low)<lowest[50](low)[1] or lowest[3](low)<lowest[50](low)[2] or lowest[3](low)<lowest[50](low)[3]c4 = summation[3](sto<20)>0long = c1 and c2 and c3 and c4if long thendrawarrowup(barindex,lowest[3](low)) coloured(0,255,0)endif// SHORT//Green/Red candle (reversal)//Bearish candle close below the close of the previous green candle//Space to the left (the high of the last 3 candles higher than the high of the last 50 candles)//default stochastic (8,3,3) was in the overbought area within the last 3 candles.c5 = close[1]>open[1] and close<openc6 = close<open[1]c7 = highest[3](high)>highest[50](high)[1] or highest[3](high)>highest[50](high)[2] or highest[3](high)>highest[50](high)[3]c8 = summation[3](sto>80)>0short = c5 and c6 and c7 and c8if short thendrawarrowdown(barindex,highest[3](high)) coloured(255,0,0)endifplus ce bout de code :
12345678910111213141516171819202122232425262728293031323334353637//---external parameters//cp = 20once lastpoint = 0ATR = averagetruerange[cp]//---major zigzag pointsif high[cp] >= highest[2*cp+1](high) thenLH = 1elseLH = 0endifif low[cp] <= lowest[2*cp+1](low) thenLL = -1elseLL = 0endifif LH = 1 thenTOPy = high[cp]TOPx = barindex[cp]endifif LL = -1 thenBOTy = low[cp]BOTx = barindex[cp]endifif LH>0 and (lastpoint=-1 or lastpoint=0) thenDRAWTEXT("░",TOPx,TOPy+ATR/2,Dialog,Bold,20) coloured(200,0,0,255)lastpoint = 1endifif LL<0 and (lastpoint=1 or lastpoint=0) thenDRAWTEXT("░",BOTx,BOTy-ATR/2,Dialog,Bold,20) coloured(0,200,0,255)lastpoint = -1endifj aimerais bien savoir ce que ça pourrait donner .
est que quelqu un se sent de le code , c est u peu une usina a gaz pour moi ?
@ nicolas , ça pourrait faire un tres bon nouvel indicateur pour la librairie ….
return long as “long reversal”, short as “short reversal”06/06/2017 at 10:43 PM #3767206/07/2017 at 9:06 AM #37711Pas grave je l’ai déplacé dans le forum ProBuilder.
Donc si je comprends bien ta requête, tu souhaiterais avoir des signaux de reversal uniquement d’achat si le dernier fractal est plus bas ? et inversement pour les signaux de renversement baissier bien entendu.
06/07/2017 at 9:57 PM #37787@ nicolas .
En fait , je me demande si c est possible .
j explique .
Sur le reversal on touche a rien , le code y sera tel quel ( je pense quand meme qu il faudra bidouiller pour avoir plus de signaux )
Sur ce , depuis le zigzag on ramene le bout de code qui affiche les ” grilles ” qui ce superposeront alternativeemnt sur une fleche rouge , fleche verte , fleche rouge ,fleche verte ,fleche rouge ,etc …. marquant des signaux d achat en dessous des signaux de vente et vice versa .
Sauf que , dans le code du Multi Fractals ZigZag , d apres ce que j ai compris , les petites grilles ne determinent pas les derniers signaux , mais ce placent mecaniquement et coincident avec les signaux du zig zag classique ( minor signals ) .
Donc sauf erreur de ma part , pas si simple .
Je sait pas si j ai ete clair .
Qu en penses tu ?
06/08/2017 at 10:16 AM #37813 -
AuthorPosts
Find exclusive trading pro-tools on