Signal corrélation bar chart
Forums › ProRealTime forum Français › Support ProBuilder › Signal corrélation bar chart
- This topic has 9 replies, 4 voices, and was last updated 1 week ago by Atemi19.
-
-
11/02/2024 at 2:59 AM #239894
Bonjour, je souhaite travailler le price action. J’ai deux graphiques un graphique avec bar chart 5 points et l’autre 20 points. Pour une tendance prononcée, un bar chart 20 point fait 4 Bart du graphe 5 points. En gros je voudrais qu’il y ait un signal a chaque fois qu’il y a ce genre de configuration et voir aussi le contraire trop de bar de 5 points alors qu’il n’y a qu’un bar de 20 points pour montrer range ou affaiblissement tendance….
Cordialement.
11/02/2024 at 1:31 PM #239896Salut,
Je suppose que tu parles de Renko. Étant donné qu’il n’est pas possible d’échanger des données entre graphiques et que les unités de temps ne sont pas disponibles pour Renko, tu pourrais partir d’un graphique Renko de 5 points et y définir les différentes conditions… ?Renko Trend1234567891011121314151617181920212223242526272829DefParam DRAWONLASTBARONLY =TrueUpTrend=Summation[4](Close>Close[1])=4DownTrend=Summation[4](Close<Close[1])=4WeakUpTrend=UpTrend and Summation[5](Close<Close[1])=1WeakDownTrend=DownTrend and Summation[5](Close>Close[1])=1NoTrend=NOT UpTrend and NOT DownTrend and NOT WeakUpTrend and NOT WeakDownTrend and (Summation[4](Close>Close[1])<4 or Summation[4](Close>Close[1])<4)If UpTrend thenDrawText("UpTrend",-150,-100,SansSerif,Bold,45)Coloured("Green")Anchor(TopRight)EndIfIf DownTrend thenDrawText("DownTrend",-150,-100,SansSerif,Bold,45)Coloured("Red")Anchor(TopRight)EndIfIf WeakUpTrend thenDrawText("WeakUpTrend",-150,-100,SansSerif,Bold,45)Coloured("Orange")Anchor(TopRight)EndIfIf WeakDownTrend thenDrawText("WeakDownTrend",-150,-100,SansSerif,Bold,45)Coloured("Orange")Anchor(TopRight)EndIfIf NoTrend thenDrawText("NoTrend",-150,-100,SansSerif,Bold,45)Coloured("Yellow")Anchor(TopRight)EndIfReturn11/02/2024 at 4:06 PM #239902Oui mais le souci c’est que je n’aime pas trop les renko car il faut 2 fois le mouvements pour faire l’inverse c’est pour cela que j’aime bien les bars charts car c’est uniquement le même mouvement….après si tu as la même chose en renko je serais preneur car je ne veux pas l’inversion de renko il faut absolument qu’il y ait le même prix….
11/04/2024 at 12:01 PM #239932Dans ce graphique de voiles, vous pouvez voir les 2 Renko, un en forme de voiles et l'autre cogiendo le point moyen. Vous pouvez vous rendre à Marlo comme point de départ pour ce que vous cherchez à programmer.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263//—settingsboxsize=5//renko bricks size in points/pipsboxsize1=20//renko bricks size in points/pipstransparency=100//brick colours alphawicksize=0 //width of wicks//—end of settings//----------------------------------------------//// Renko//----------------------------------------------//size=boxsize*pointsizeonce upbox = closeonce downbox = close - sizeonce lowwick = close*100IF close > upbox + size THENupbox = upbox + sizedownbox = downbox + sizer=0g=200begin=barindexhighwick=closewickbar=barindex-round((barindex-begin[1])/2)ELSIF close < downbox - size THENupbox = upbox - sizedownbox = downbox - sizer=200g=0begin=barindexwickbar=barindex-round((barindex-begin[1])/2)ENDIF//draw renko candlesticksdrawcandle(upbox,upbox,downbox,downbox)coloured(r,g,0,min(transparency,255))//----------------------------------------------//// Renko 1//----------------------------------------------//size1=boxsize1*pointsizeonce upbox1 = closeonce downbox1 = close - size1once lowwick1 = close*100IF close > upbox1 + size1 THENupbox1 = upbox1 + size1downbox1 = downbox1 + size1r1=0g1=255begin1=barindexhighwick1=closewickbar1=barindex-round((barindex-begin1[1])/2)ELSIF close < downbox1 - size1 THENupbox1 = upbox1 - size1downbox1 = downbox1 - size1r1=255g1=0begin1=barindexwickbar1=barindex-round((barindex-begin1[1])/2)ENDIFMid1 = (upbox1+downbox1)/2//----------------------------------------------//RETURN Mid1 coloured(r1,g1,0) style(line,2)11/04/2024 at 12:36 PM #23993511/04/2024 at 4:58 PM #23995511/04/2024 at 5:32 PM #23995611/06/2024 at 10:54 AM #24002711/07/2024 at 1:26 PM #240065Tu te réfères à ça ?
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263//—settingsboxsize=5//renko bricks size in points/pipsboxsize1=20//renko bricks size in points/pipstransparency=100//brick colours alphawicksize=0 //width of wicks//—end of settings//----------------------------------------------//// Renko//----------------------------------------------//size=boxsize*pointsizeonce upbox = closeonce downbox = close - sizeonce lowwick = close*100IF close > upbox + size THENupbox = upbox + sizedownbox = downbox + sizer=0g=200begin=barindexhighwick=closewickbar=barindex-round((barindex-begin[1])/2)ELSIF close < downbox - size THENupbox = upbox - sizedownbox = downbox - sizer=200g=0begin=barindexwickbar=barindex-round((barindex-begin[1])/2)ENDIF//draw renko candlesticksdrawcandle(upbox,upbox,downbox,downbox)coloured(r,g,0,min(transparency,255))//----------------------------------------------//// Renko 1//----------------------------------------------//size1=boxsize1*pointsizeonce upbox1 = closeonce downbox1 = close - size1once lowwick1 = close*100IF close > upbox1 + size1 THENupbox1 = upbox1 + size1downbox1 = downbox1 + size1r1=0g1=255begin1=barindexhighwick1=closewickbar1=barindex-round((barindex-begin1[1])/2)ELSIF close < downbox1 - size1 THENupbox1 = upbox1 - size1downbox1 = downbox1 - size1r1=255g1=0begin1=barindexwickbar1=barindex-round((barindex-begin1[1])/2)ENDIFMid1 = (upbox1+downbox1)/2//----------------------------------------------//RETURN Mid1 coloured(r1,g1,0) style(line,2)11/07/2024 at 6:23 PM #240083 -
AuthorPosts
Find exclusive trading pro-tools on