signaux Oscillateur Bollinger (% b)
Forums › ProRealTime forum Français › Support ProBuilder › signaux Oscillateur Bollinger (% b)
- This topic has 7 replies, 2 voices, and was last updated 5 years ago by mohamed.
-
-
06/18/2019 at 8:35 PM #100972
bonjour a tous! j’ai trouver ce code sur un site http://sohocool.over-blog.com/article-26490268.html et je souhaiter ajouter une fleche d’achat directement sur le graf quand la ligne croise a la hausse la ligne 20 et une fleche de vente quand la ligne croise a la baisse la ligne 80 j’ai essayer plusieurs combinaison pour y arrivé mais je n’est pas réussie! quelqu’un pourrait’il m’aider svp merci d’avance!!
1234567891011121314151617181920212223// oscillateur % b bollinger// variable p = longueur moyenne mobile -// s = coef standard deviation -et t = ma type// par defaut p =20 - s =2 - t = simple prix = typicalprice =( c+h+l)/3prix=customclosegd2 = average[p,t](prix)sd= s*STD[p](prix)bollsup= gd2 + sdbollinf = gd2 - sdif close crosses over 20 thenDRAWARROWUP (barindex +1,low -1*pointsize)coloured(70,130,180)endifB1 = 100*(close - bollinf)/ ( BOLLSUP -BOLLINF)RETURN B1 as "%b bollinger",20,50,8006/18/2019 at 8:45 PM #10097306/19/2019 at 6:54 AM #100998On ne peut pas tracer des objets des graphiques hors fenêtre, c’est à dire que ton oscillateur ne peut pas créer de flèches sur le graphique du prix. Il faut donc modifier un peu le code original, pour ne pas retourner l’oscillateur Bollinger %b et appliquer le code au prix (pour voir les flèches sur celui-ci).
123456789101112131415161718192021222324252627282930// oscillateur % b bollinger// variable p = longueur moyenne mobile -// s = coef standard deviation -et t = ma type// par defaut p =20 - s =2 - t = simple prix = typicalprice =( c+h+l)/3p=20s=2t=0prix=typicalpriceprix=customclosegd2 = average[p,t](prix)sd= s*STD[p](prix)bollsup= gd2 + sdbollinf = gd2 - sdB1 = 100*(close - bollinf)/ ( BOLLSUP -BOLLINF)if close crosses over 20 thenDRAWARROWUP (barindex +1,low -1*pointsize)coloured(70,130,180)endifif close crosses under 80 thenDRAWARROWUP (barindex +1,high+1*pointsize)coloured(255,0,0)endifRETURNJe n’ai pas testé.
06/19/2019 at 7:46 AM #10100306/19/2019 at 7:55 AM #10100406/19/2019 at 7:56 AM #101005code modifier123456789101112131415161718192021222324252627282930// oscillateur % b bollinger// variable p = longueur moyenne mobile -// s = coef standard deviation -et t = ma type// par defaut p =20 - s =2 - t = simple prix = typicalprice =( c+h+l)/3p=20s=2t=0prix=typicalpriceprix=customclosegd2 = average[p,t](prix)sd= s*STD[p](prix)bollsup= gd2 + sdbollinf = gd2 - sdB1 = 100*(close - bollinf)/ ( BOLLSUP -BOLLINF)if b1 crosses over 20 thenDRAWARROWUP (barindex ,low -1*pointsize)coloured(70,130,180)endifif b1 crosses under 80 thenDRAWARROWdown (barindex ,high+1*pointsize)coloured(255,0,0)endifRETURN06/19/2019 at 8:03 AM #10100706/19/2019 at 8:12 AM #101009 -
AuthorPosts
Find exclusive trading pro-tools on