Pourcentage entre 2 ” close “
Forums › ProRealTime forum Français › Support ProBuilder › Pourcentage entre 2 ” close “
- This topic has 14 replies, 3 voices, and was last updated 2 years ago by
JC_Bywan.
-
-
08/28/2022 at 6:14 PM #199755
bonsoir à tous,
Une idée m’est venue , voyons si elle est réalisable ?
J’aimerai faire apparaitre sur le graphe le pourcentage acquis entre les deux derniers ” close ” d’un signal.
Ici les points ronds du ” drawtext ”
Ainsi on aurait la performance instantanée d’un indicateur, en l’occurrence le perfect trendline 2merci de votre aide
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980// PerfectTrendLine 2 PRC indicator //05.11.2020//Nicolas @ www.prorealcode.com //Sharing ProRealTime knowledge//converted from MT5 version (original author mladen)//enhanced version by Nicolas// --- settingsSlowLength = 7 // Slow lengthFastLength = 3 // Fast length// --- end of settingsfasthigh = Highest[SlowLength](high)//[1]fastlow = Lowest[SlowLength](low)//[1]slowhigh = Highest[FastLength](high)//[1]slowlow = Lowest[FastLength](low)//[1]if high<slowhigh thenthighs=slowhighelsethighs=highendifif low>slowlow thentlows=slowlowelsetlows=lowendifif high<fasthigh thenthighf=fasthighelsethighf=highendifif low>fastlow thentlowf=fastlowelsetlowf=lowendifif close>slowln[1] thenslowln=tlowselseslowln=thighsendifif close>fastln[1] thenfastln=tlowfelsefastln=thighfendifonce trend=-1if close<slowln and close<fastln thentrend=1endifif close>slowln and close>fastln thentrend=0endifif trend<>trend[1] thenif trend=0 thenr=30g=144b=255elser=200g=20b=60endifdrawtext("●",barindex,fastln,Dialog,Bold,10) coloured(r,g,b)endifdrawcandle(open,high,low,close) coloured(168,168,168)if trend=0 thenif close>slowln thendrawcandle(open,high,low,close) coloured(30,144,255)endifelsif trend=1 thenif close<slowln thendrawcandle(open,high,low,close) coloured(200,20,60)endifendifreturn fastln coloured(30,144,255) as "fast line",slowln coloured(200,20,60) as "slow line", trend as "trend"08/28/2022 at 6:52 PM #199757Ecrit dessus/dessous plutôt qu’à côté, car dans le même drawtext que les points ça aurait décaler la position des points. On peut changer le deltaY si on veut modifier l’espacement vertical.
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485// PerfectTrendLine 2 PRC indicator //05.11.2020//Nicolas @ www.prorealcode.com //Sharing ProRealTime knowledge//converted from MT5 version (original author mladen)//enhanced version by Nicolas// --- settingsSlowLength = 7 // Slow lengthFastLength = 3 // Fast length// --- end of settingsfasthigh = Highest[SlowLength](high)//[1]fastlow = Lowest[SlowLength](low)//[1]slowhigh = Highest[FastLength](high)//[1]slowlow = Lowest[FastLength](low)//[1]if high<slowhigh thenthighs=slowhighelsethighs=highendifif low>slowlow thentlows=slowlowelsetlows=lowendifif high<fasthigh thenthighf=fasthighelsethighf=highendifif low>fastlow thentlowf=fastlowelsetlowf=lowendifif close>slowln[1] thenslowln=tlowselseslowln=thighsendifif close>fastln[1] thenfastln=tlowfelsefastln=thighfendifonce trend=-1if close<slowln and close<fastln thentrend=1endifif close>slowln and close>fastln thentrend=0endifif trend<>trend[1] thenif trend=0 thenr=30g=144b=255deltaY=-range/2elser=200g=20b=60deltaY=range/2endifoldsignal=newsignalnewsignal=closepctage=100*(newsignal-oldsignal)/oldsignaldrawtext("●",barindex,fastln,Dialog,Bold,10) coloured(r,g,b)drawtext("#pctage#%",barindex,fastln+deltaY,Dialog,Bold,10) coloured(0,0,0)endifdrawcandle(open,high,low,close) coloured(168,168,168)if trend=0 thenif close>slowln thendrawcandle(open,high,low,close) coloured(30,144,255)endifelsif trend=1 thenif close<slowln thendrawcandle(open,high,low,close) coloured(200,20,60)endifendifreturn fastln coloured(30,144,255) as "fast line",slowln coloured(200,20,60) as "slow line", trend as "trend"08/29/2022 at 11:02 AM #19978308/29/2022 at 2:53 PM #19981208/29/2022 at 3:11 PM #19981608/29/2022 at 6:17 PM #19984012/27/2022 at 10:13 AM #206350En réponse à : https://www.prorealcode.com/topic/perfect-trendline-2-prc-nicolas/#post-206339
Remplacer la ligne 72 par:
1234567891011if newsignal>=oldsignal thenrtext=0gtext=255btext=0elsertext=255gtext=0btext=0endifdrawtext("#pctage#%",barindex,fastln+deltaY,Dialog,Bold,10) coloured(rtext,gtext,btext)ici écrit avec un simple vert/rouge, on peut remplacer les 2 jeux de rtext=… gtext=… btext=… pour d’autres couleurs personnalisées
12/27/2022 at 12:44 PM #206357Merci JC pour le code cependant le résultat n’est pas celui escompté
je joins une image du résultat
(control F5 ne marche pas pour insérer le code !)
if trend<>trend[1] then
if trend=0 then
r=247//30 // jaune
g=255//144
b=0//255
deltaY= -range/2
else
r=255//200 // Orange
g=72//20
b=0//60
deltaY= range/2
endif
/////////////////////////////////////////////////////////
oldsignal=newsignal
newsignal=close
//pctage=100*(newsignal-oldsignal)/oldsignal
//pctage=round(100*(newsignal-oldsignal)/oldsignal,2)
/////////////////////////////////////////////////////////
if newsignal>=oldsignal then
rtext=0
gtext=255
btext=0
else
rtext=255
gtext=0
btext=0
drawtext(“#pctage#%”,barindex,fastln+deltaY,Dialog,Bold,20) coloured(rtext,gtext,btext)
/////////////////////////////////////////////////////////
drawtext(“●”,barindex,fastln,Dialog,Bold,30) coloured(r,g,b)
drawtext(“●”,barindex,fastln,Dialog,Bold,20) coloured(0,0,0)
//drawtext(“#pctage#%”,barindex,fastln+deltaY,Dialog,Bold,20) coloured(239,216,7)//jaune
endif
endif
//////////////////////////////////////////////////////////////////12/27/2022 at 12:56 PM #206361en remettant l’ancien code on a bien des % mais que les négatifs !
/////////////////////////////////////////////////////////
oldsignal=newsignal
newsignal=close
//pctage=100*(newsignal-oldsignal)/oldsignal
pctage=round(100*(newsignal-oldsignal)/oldsignal,2)
/////////////////////////////////////////////////////////12/27/2022 at 12:58 PM #20636212/27/2022 at 3:48 PM #206372Dans le post https://www.prorealcode.com/topic/pourcentage-entre-2-close/#post-206357
tu as mis des // devant la ligne pctage=round(100*(newsignal-oldsignal)/oldsignal,2)
il faut les enlever pour que la variable pctage soit bien calculée et s’affiche à l’écran en valeur numérique au lieu du texte #pctge#
Afin de vérifier si les positifs manquent ou pas, il faut partir d’un cas qu’on connait positif avant modification, ainsi qu’éventuellement vérifier que les rtext,gtext,btext ne soient pas mis sur la même couleur que le fond de fenêtre 0,0,0 lors de modifs intermédiaires, à part ça je vois pas ce qui pourrait empêcher les cas positifs d’apparaitre
12/28/2022 at 1:35 PM #20639601/03/2023 at 1:17 PM #206724Désolé le ctrl+f5 ne fonctionne pas pour entrer le code.
@JCbyWan
En réalité je viens de m’apercevoir que le code renvoit des pourcentages qui sont faux avec ce qui est ci-dessous.
moyen de voir d’où vient l’erreur ?
merci
meilleurs voeux pour 2023
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171//////////////////////////////////////////////////////////////////////////////////////////////////////// PERFECT TRENDLINE2 MULTICOLORE V1 by DID 25.07.2022 modifié JCbyWan 28.12.2022// PerfectTrendLine 2 PRC indicator //05.11.2020 modifié DID le 22.07.2022//Nicolas @ http://www.prorealcode.com //Sharing ProRealTime knowledge//converted from MT5 version (original author mladen)//enhanced version by Nicolas// OUVRIR le graphe PRIX en premier puis mettre les indicateurs …// — settings//SlowLength = 7//FastLength = 3//p=2//m = type de moyenne perso = pondérée (2)// — end of settingsdefparam calculateonlastbars = 150fasthigh = Highest[SlowLength](high)//[1]fastlow = Lowest[SlowLength](low)//[1]slowhigh = Highest[FastLength](high)//[1]slowlow = Lowest[FastLength](low)//[1]if high<slowhigh thenthighs=slowhighelsethighs=highendifif low>slowlow thentlows=slowlowelsetlows=lowendifif high<fasthigh thenthighf=fasthighelsethighf=highendifif low>fastlow thentlowf=fastlowelsetlowf=lowendifif close>slowln[1] thenslowln=tlowselseslowln=thighsendifif close>fastln[1] thenfastln=tlowfelsefastln=thighfendifonce trend=-1if close<slowln and close<fastln thentrend=1endifif close>slowln and close>fastln thentrend=0endifif trend<>trend[1] thenif trend=0 thenr=247//30 // jauneg=255//144b=0//255deltaY= -range/2elser=255//200 // Orangeg=72//20b=0//60deltaY= range/2endif/////////////////////////////////////////////////////////////////////////////if newsignal>=oldsignal thenrtext=0gtext=255btext=0elsertext=255gtext=0btext=0endifdrawtext(“#pctage#%”,barindex,fastln+deltaY,Dialog,Bold,20) coloured(rtext,gtext,btext)/////////////////////////////////////////////////////////////////////////////oldsignal=newsignalnewsignal=close//pctage=100*(newsignal-oldsignal)/oldsignalpctage=round(100*(newsignal-oldsignal)/oldsignal,2)drawtext(“●”,barindex,fastln,Dialog,Bold,30) coloured(r,g,b)drawtext(“●”,barindex,fastln,Dialog,Bold,20) coloured(0,0,0)//drawtext(“#pctage#%”,barindex,fastln+deltaY,Dialog,Bold,20) coloured(239,216,7)//jauneendif//////////////////////////////////////////////////////////////////If close > open thendrawcandle(open,high,low,close) coloured(30,144,255) bordercolor (143,255,31)endifIf close < open thendrawcandle(open,high,low,close) coloured(200,20,60) bordercolor (200,20,60)endif/////////////////////////////////////////////////////////////////drawcandle(open,high,low,close) coloured (168,168,168)if trend=0 thenif close>slowln thendrawcandle(open,high,low,close) coloured(30,144,255)endifelsif trend=1 thenif close<slowln thendrawcandle(open,high,low,close) coloured(200,20,60)endifendif////////////////////////////////////////////////////MASLOW = average [p,m](slowln)MASFAST = average [p,m](fastln)//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////ONCE CciPeriod = 20ONCE RsiPeriod = 12 //perso = 12ONCE N = 14ONCE K = 3ONCE DiPeriod = 14ONCE MAperiod = 20 // perso = 7 NON UTILISEONCE MAtype = 0 // 0=SMA NON UTILISEONCE UseCci = 1 // BOOLEEN VRAI =1 // CANDLE + COMMODITY CHANNEL INDEXONCE UseRsi = 1 //BOOLEEN VRAI =1 // CANDLE + RSI COLOURONCE UseStochastic = 1 //BOOLEEN VRAI =1 // CANDLE + STOCASTIC COLOURONCE UseCycle = 1 //BOOLEEN VRAI =1 // CANDLE + CYCLE COLOURONCE UseDI = 1 //BOOLEEN VRAI =1 // CANDLE + DIRECTIONAL INDEX// — end of settingsIf UseCci then // CANDLE + COMMODITY CHANNEL INDEX COLOURMyCci = Cci[max(1,CciPeriod)](customclose)R = (200-MyCci)G = (200+MyCci)Elsif UseRsi then // CANDLE + RSI COLOURMyRsi = RSI[max(1,RsiPeriod)](customclose)R =50+(200-(MyRsi-50)*12)G =50+(200+(MyRsi-50)*12)Elsif UseStochastic then // CANDLE + STOCHASTIC COLOURMyStoch = Stochastic[max(1,N),max(1,K)](customclose)R =50+(200-(MyStoch-50)*6)G =50+(200+(MyStoch-50)*6)Elsif UseCycle then // CANDLE + CYCLE COLOURMyCycle = Cycle(customclose)R = (200-MyCycle*10)G = (200+MyCycle*10)Elsif UseDI then // CANDLE + DIRECTIONAL INDEXMyDi = DI[max(1,DiPeriod)](customclose)R = 50+(200-MyDi*10)G = 50+(200+MyDi*10)endif////////////////////////////////////////////////////////////// BANDES de BOLLINGER DID by Nicolas 02.09.2022data = customcloseMA = average[20,m1](data)BolUp = MA+STD[20]*devBolDn = MA-STD[20]*dev// Return MA as ” MM34 ” , Bolup as ” Bolup ” , Boldn as ” Boldn ”// Variables// period = 20// dev = 2// m1 = 0 simple////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////return fastln coloured(30,144,255) as “fast line”,slowln coloured(200,20,60) as “slow line” , MASLOW as ” MASLOW ” coloured (R,G,0) , MASFAST as ” MASFAST ” , MASFAST as ” MASFAST ” ,close as “close” , MA as ” MM34 ” , Bolup as ” Bolup ” , Boldn as ” Boldn ” //, trend as “trend”01/03/2023 at 4:44 PM #206731Je l'ai converti en code PRT.
1 user thanked author for this post.
01/04/2023 at 6:57 AM #206739Meilleurs voeux,
en regardant juste le code a priori pour le moment je vois pas, il faudrait partir d’un exemple spécifique de pourcentage considéré comme faux, en précisant en plus de la valeur du pourcentage pour quel instrument, timeframe et horaire de la bougie, et quelle est la valeur attendue considérée comme juste, pour mieux explorer d’où peut venir la différence
-
AuthorPosts
Find exclusive trading pro-tools on