GRAB Candlesticks Indicator
Forums › ProRealTime forum Français › Support ProBuilder › GRAB Candlesticks Indicator
- This topic has 23 replies, 4 voices, and was last updated 7 years ago by supertiti.
-
-
03/05/2017 at 1:06 PM #27210
Bonjour à tous
L’indicateur GRAB Candlesticks indicator de Raghee Horner semble d’un intérêt certain pour qui veut se simplifier la lecture des chandeliers.
Toutefois j’aimerai savoir s’il est possible de faire ressortir les bougies grises, je m’explique j’aimerai une bougie gris clair quand le close est > à l’open (bougie verte) et gris foncé quand le close est < à l’open (bougie rouge)
merci de votre aide
bon dimanche
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566//PRC_GRaB candlesticks | indicator//01.03.2017//Nicolas @ www.prorealcode.com//Sharing ProRealTime knowledge//converted from MT4 code//--- parameters// EMAperiod=34// mmTYPE=1 (mm type)// ---EMAh = average[EMAperiod,mmTYPE](high)EMAl = average[EMAperiod,mmTYPE](low)EMAc = average[EMAperiod,mmTYPE](close)bodyhigh = max(open,close)bodylow = min(open,close)if(open<=close and close > EMAH) thenLongWickUp = highLongCandleUp = bodyHighLongWickDown = lowLongCandleDown = bodyLowelsif(open>=close and close > EMAH) thenLongWickUp = lowLongCandleUp = bodyLowLongWickDown = highLongCandleDown = bodyHighelsif(open<=close and close < EMAL) thenShortWickUp = highShortCandleUp = bodyHighShortWickDown = lowShortCandleDown = bodyLowelsif(open>=close and close < EMAL) thenShortWickUp = lowShortCandleUp = bodyLowShortWickDown = highShortCandleDown = bodyHighelsif(open<=close and close < EMAH and close > EMAL) thenRangeWickUp = highRangeCandleUp = bodyHighRangeWickDown = lowRangeCandleDown = bodyLowelsif(open>=close and close < EMAH and close > EMAL) thenRangeWickUp = lowRangeCandleUp = bodyLowRangeWickDown = highRangeCandleDown = bodyHighendif//bullish candlesticksif close>EMAH thenDRAWCANDLE(LongCandleDown,LongWickUp,LongWickDown,LongCandleUp) coloured(0,200,0)endif//bearish candlesticksif close<EMAL thenDRAWCANDLE(ShortCandleDown,ShortWickUp,ShortWickDown,ShortCandleUp) coloured(200,0,0)endif//neutral candlesticks (range)if close<EMAH and close>EMAL thenDRAWCANDLE(RangeCandleDown,RangeWickUp,RangeWickDown,RangeCandleUp) coloured(150,150,150)endifRETURN EMAH coloured(100,100,100) style(dottedline) as "high EMA", EMAL coloured(100,100,100) style(dottedline) as "low EMA", EMAC coloured(100,100,100) style(point) as "trend EMA"03/05/2017 at 1:26 PM #27217Nicolas peux tu confirmer si ce code répond à ma question ?
12345678//neutral candlesticks vertes (range)if close<EMAH and close>EMAL and close > open thenDRAWCANDLE(RangeCandleDown,RangeWickUp,RangeWickDown,RangeCandleUp) coloured(192,192,192)Endif//neutral candlesticks rouge (range)if close<EMAH and close>EMAL and close < open thenDRAWCANDLE(RangeCandleDown,RangeWickUp,RangeWickDown,RangeCandleUp) coloured(64,64,64)Endif03/05/2017 at 1:28 PM #2721803/05/2017 at 2:24 PM #2722303/05/2017 at 2:27 PM #2722603/05/2017 at 2:49 PM #2722903/05/2017 at 3:56 PM #2724003/08/2017 at 4:42 PM #2777103/08/2017 at 4:45 PM #2777303/09/2017 at 1:55 PM #27947Bonjour Zen
Bonne observation , le fait de décaler les BB sur le trend EMA34 “pondère” la tendance , dans un trend haussier la Boll Sup peut servir de support manifestement .
Une stratégie simple de breakout peut être mise en place après un squeeze effectivement.
personnellement j’ustilise 2 bandes de Bollinger : une courte et la standard BB20/2 , avec l’habitude on peut travailler les prix quand ils courent entre les bandes sur des figures reconnaissables.
Je vais regarder ta technique et peut être marier les deux approches, nous verrons s’il en sort quelque chose ?
Bonne journée bons trades.
03/09/2017 at 6:41 PM #2796203/09/2017 at 7:50 PM #2797103/09/2017 at 8:01 PM #2797503/09/2017 at 9:47 PM #2799703/10/2017 at 12:39 PM #28079@ Zen
j’utilise cette technique depuis des années avec un certain succès,on parle souvent de courir le long des bandes.
l’idée c’est d’user la BB20/2 puisque ce sont les paramètres universels que “tout le monde” regarde , débutants comme experts.(personnaliser à outrance est une fausse bonne idée à mon avis, donc utilisons les variables standard)
l’autre variable est de déterminer “ses” BB ,en y allant à tatons on fini par trouver les bandes à sa mesure et à son horizon de trading (rien est gravé dans le marbre,chacun sa route …)
bonne journée
-
AuthorPosts