Afficher le + haut et = bas x bars avant et apres
Forums › ProRealTime forum Français › Support ProBuilder › Afficher le + haut et = bas x bars avant et apres
- This topic has 11 replies, 3 voices, and was last updated 3 years ago by thebaron.
-
-
06/25/2021 at 9:24 AM #17239407/12/2021 at 9:04 PM #17354807/12/2021 at 10:38 PM #173551
- Publiez uniquement dans la langue du forum dans laquelle vous publiez. Par exemple, l’anglais uniquement dans les forums anglophones et le français uniquement dans les forums francophones.
- Ne doublez pas les messages. Posez votre question une seule fois et dans un seul forum. Tous les messages doubles seront supprimés de toute façon, donc poster plusieurs fois la même question vous fera perdre votre propre temps et ne vous donnera pas de réponse plus rapidement. La double publication crée juste de la confusion dans les forums
Thank you 🙂
07/13/2021 at 12:42 PM #173594J’ ai recopier une partie du code de nicolas mais je ne sais pas comment l’afficher sur le graph
//PRC_Top Bottom | indicator//08.10.2020//Nicolas @ http://www.prorealcode.com//Sharing ProRealTime knowledge// — settingsper = 14 //Bottom Periodper2 = 14 //Top Period// — end of settingsloc = low < lowest[per](low[1]) and low <= lowest[per](low[per])if loc thenlocstart=barindexendifbottom = barindex–locstartloc2 = high > highest[per2](high[1]) and high >= highest[per2](high[per2])if loc2 thenloc2start=barindexendiftop = barindex–loc2start07/13/2021 at 3:14 PM #173599J’ ai recopier une partie du code de nicolas mais je ne sais pas comment l’afficher sur le graph
//PRC_Top Bottom | indicator//08.10.2020//Nicolas @ http://www.prorealcode.com//Sharing ProRealTime knowledge// — settingsper = 8 //Bottom Period// — end of settingsloc = low[9] < lowest[per](low[10]) and low <= lowest[per](low[1])if loc thenlocstart=barindexendifbottom = barindex–locstartloc2 = high[9] > highest[per](high[10]) and high >= highest[per](high[1])if loc2 thenloc2start=barindexendiftop = barindex–loc2startMaintenant comment l afficher sur l ecran ? ca devrait etre la barre avec le plus bas des 8 precedantes et suivantes
et inversement pour le plus haut
07/13/2021 at 5:55 PM #173604Chaque indicateur a besoin de RETOUR. Vous devez terminer l'indicateur.
07/13/2021 at 6:26 PM #17360607/14/2021 at 8:55 AM #173617Je pense que ce que tu recherches, c’est cet indicateur: https://www.prorealcode.com/prorealtime-indicators/pivot-support-resistance-zones/
soit choisir la quantité de bougies avant et après un point haut pour définir un “pivot” ou un “fractal”.
07/14/2021 at 9:39 AM #17361807/14/2021 at 3:00 PM #17363107/15/2021 at 8:44 AM #173649avec l’instruction STYLE ajouté à la fin de DRAWSEGMENT, ici une ligne d’épaisseur 3 :
12345678910111213141516171819202122DEFPARAM CalculateOnLastBars = 1000PivotBAR = 2 //2 bars AFTER pivotLookBack = 4 //3 bars BEFORE pivotBarLookBack = PivotBAR + 1IF low[PivotBAR] < lowest[LookBack](low)[BarLookBack] THENIF low[PivotBAR] = lowest[BarLookBack](low) THENMySupport = BarIndex - PivotBARSupportPrice = low[PivotBAR]ENDIFENDIFIF high[PivotBAR] > highest[LookBack](high)[BarLookBack] THENIF high[PivotBAR] = highest[BarLookBack](high) THENMyResistance = BarIndex - PivotBARResistancePrice = high[PivotBAR]//high[BarIndex - MyResistance]ENDIFENDIFDRAWSEGMENT(MyResistance,ResistancePrice,BarIndex,ResistancePrice) COLOURED(255,0,0,255) style(line,3)DRAWSEGMENT(MySupport,SupportPrice,BarIndex,SupportPrice) COLOURED(0,128,0,255) style(line,3)RETURN07/15/2021 at 11:36 AM #173666 -
AuthorPosts
Find exclusive trading pro-tools on