SCREENER DIVERGENCES TTI
Forums › ProRealTime forum Français › Support ProScreener › SCREENER DIVERGENCES TTI
- This topic has 32 replies, 3 voices, and was last updated 6 years ago by supertiti.
-
-
05/29/2017 at 12:50 PM #36885
Bonjour à tous,
A partir du code Nicolas sur le TTI stochastique extrème disponible dans la bibliothèque
https://www.prorealcode.com/prorealtime-indicators/tti-stochastic-extreme-indicator/j’aimerais faire un screener renvoyant ” l’ax4 ”
j’ai fais ça mais ça marche pas ?! un peu d’aide please serait bienvenu
bons trades
SCREENER DIVERGENCES TTI12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182// SCREENER DIVERGENCES TTI STOCHASTIC EXTREME// DIVERGENCES TTI STOCHASTIC EXTREME//TTI Sctochastic Extreme PRC 12.05.2017//Nicolas @ www.prorealcode.comif close>average[ma] thenx1 = std[ma]elsex1 = -1*std[ma]endif//x2 = (summation[3](x1-lowest[5](x1))/summation[3](highest[5](x1)-lowest[5](x1)))*100x3 = x1*averagetruerange[5]x4 = (summation[3](x3-lowest[5](x3))/summation[3](highest[5](x3)-lowest[5](x3)))*100//a = average[3,1](x2)b = average[3,1](x4)//return b as " ax4 ", 5 style(line) as "level 5", 95 style(line) as "level 95",close as "close"// a style(dottedline)as "ax2"// Variable :// ma = 14 entier///////////////////////////////////////////////////////////////////////// DIVERGENCES STOCHASTIQUES BAISSIERES et HAUSSIERES d’après le code de HKlissex = b [11]y=average[2](x)// DIVERGENCES BAISSIERES TTIif x>y thenhi=max(hi,x)hico=max(hico,max(high,high[1]))endifif x crosses under y thensto2b=sto1bsto1b=hihi=0p3b=p1bp2b=max(p1b,hico1)p1b=max(highest[3](high),hico)if p2b=p1b thenp2b=max(p3b,p4b)endifhico=0hico1=0endifif x<y thenp4b=hico1hico1=max(hico1,high)endifif p1b>p2b and sto1b<sto2b and x crosses under y and x<x[1] thensignB= 5 //-2elsesignB= 0endif// DIVERGENCES HAUSSIERES TTIif x<y thenlo=min(lo,x)lowco=min(lowco,min(low,low[1]))endifif x CROSSES OVER y thensto2h=sto1hsto1h=lolo=100p3h=p1hp2h=min(p1h,lowco1)p1h=min(lowest[3](low),lowco)if p2h=p1h thenp2h=min(p3h,p4h)endiflowco=100000lowco1=100000endifif x>y thenp4h=lowco1lowco1=min(lowco1,low)endifif p1h<p2h and sto1h > sto2h and x crosses over y and x>x[1] thensignH= 5 //2elsesignH= 0endif////////////////////////////////////////////////// return signH as " div TTI H ", signB as " div TTI B " , 0 as " zero "Ma = 14SCREENER [ signH or signB ]10/08/2017 at 12:46 PM #4861910/15/2017 at 5:46 PM #4943010/24/2017 at 11:02 AM #50367Bonjour à tous,
A partir du code Nicolas sur le TTI stochastique extrème disponible dans la bibliothèque
https://www.prorealcode.com/prorealtime-indicators/tti-stochastic-extreme-indicator/j’aimerais faire un screener renvoyant ” l’ax4 ”
j’ai fais ça mais ça marche pas ?! un peu d’aide please serait bienvenue
bons trades
SCREENER DIVERGENCES TTI
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182// SCREENER DIVERGENCES TTI STOCHASTIC EXTREME// DIVERGENCES TTI STOCHASTIC EXTREME//TTI Sctochastic Extreme PRC 12.05.2017//Nicolas @ http://www.prorealcode.comif close>average[ma] thenx1 = std[ma]elsex1 = –1*std[ma]endif//x2 = (summation[3](x1-lowest[5](x1))/summation[3](highest[5](x1)-lowest[5](x1)))*100x3 = x1*averagetruerange[5]x4 = (summation[3](x3–lowest[5](x3))/summation[3](highest[5](x3)–lowest[5](x3)))*100//a = average[3,1](x2)b = average[3,1](x4)//return b as ” ax4 “, 5 style(line) as “level 5”, 95 style(line) as “level 95”,close as “close”// a style(dottedline)as “ax2”// Variable :// ma = 14 entier///////////////////////////////////////////////////////////////////////// DIVERGENCES STOCHASTIQUES BAISSIERES et HAUSSIERES d’après le code de HKlissex = b [11]y=average[2](x)// DIVERGENCES BAISSIERES TTIif x>y thenhi=max(hi,x)hico=max(hico,max(high,high[1]))endifif x crosses under y thensto2b=sto1bsto1b=hihi=0p3b=p1bp2b=max(p1b,hico1)p1b=max(highest[3](high),hico)if p2b=p1b thenp2b=max(p3b,p4b)endifhico=0hico1=0endifif x<y thenp4b=hico1hico1=max(hico1,high)endifif p1b>p2b and sto1b<sto2b and x crosses under y and x<x[1] thensignB= 5 //-2elsesignB= 0endif// DIVERGENCES HAUSSIERES TTIif x<y thenlo=min(lo,x)lowco=min(lowco,min(low,low[1]))endifif x CROSSES OVER y thensto2h=sto1hsto1h=lolo=100p3h=p1hp2h=min(p1h,lowco1)p1h=min(lowest[3](low),lowco)if p2h=p1h thenp2h=min(p3h,p4h)endiflowco=100000lowco1=100000endifif x>y thenp4h=lowco1lowco1=min(lowco1,low)endifif p1h<p2h and sto1h > sto2h and x crosses over y and x>x[1] thensignH= 5 //2elsesignH= 0endif////////////////////////////////////////////////// return signH as ” div TTI H “, signB as ” div TTI B ” , 0 as ” zero “Ma = 14SCREENER [ signH or signB ]10/30/2017 at 4:45 PM #5094710/30/2017 at 4:51 PM #5094811/20/2017 at 1:19 PM #5329712/07/2017 at 4:13 PM #54994@ Nicolas
Sans réponse de membres du forum aurais le temps de regarder si ce screener est faisable où pas ? à mon humble avis il donne assez souvent des signaux fiables
même si parfois ils sont un peu précoce mais cela doit être une question de réglage personnel à définir.
Bons trades à tous.
12/16/2017 at 1:43 PM #5581412/17/2017 at 11:03 AM #55855Désolé, je n’ai pas bien compris ce qu’il fallait faire exactement. Je vois bien tes graphiques, mais il ne ressemble pas à l’indicateur original et comporte trop d’informations pour cerner la demande.
Sans poster de code ou de nouveaux graphiques, pourrais-tu m’indiquer précisément ce qu’il faut détecter depuis l’indicateur TTI Stochastic extreme ?
12/17/2017 at 12:13 PM #55860Bonjour Nicolas,
merci de prendre sur ton temps pour regarder ma requête.
Voici le code utilisé :
DIVERGENCES TTI STOCHASTIC EXTREME1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980// DIVERGENCES TTI STOCHASTIC EXTREME//TTI Sctochastic Extreme PRC 12.05.2017//Nicolas @ www.prorealcode.comif close>average[ma] thenx1 = std[ma]elsex1 = -1*std[ma]endif//x2 = (summation[3](x1-lowest[5](x1))/summation[3](highest[5](x1)-lowest[5](x1)))*100x3 = x1*averagetruerange[5]x4 = (summation[3](x3-lowest[5](x3))/summation[3](highest[5](x3)-lowest[5](x3)))*100//a = average[3,1](x2)b = average[3,1](x4)//return b as " ax4 ", 5 style(line) as "level 5", 95 style(line) as "level 95",close as "close"// a style(dottedline)as "ax2"// Variable :<strong>// ma = 14 entier</strong>///////////////////////////////////////////////////////////////////////// DIVERGENCES STOCHASTIQUES BAISSIERES et HAUSSIERES d’après le code de HKlisse<strong>x = b [p]y=average[2](x)</strong>// DIVERGENCES BAISSIERES TTIif x>y thenhi=max(hi,x)hico=max(hico,max(high,high[1]))endifif x crosses under y thensto2b=sto1bsto1b=hihi=0p3b=p1bp2b=max(p1b,hico1)p1b=max(highest[3](high),hico)if p2b=p1b thenp2b=max(p3b,p4b)endifhico=0hico1=0endifif x<y thenp4b=hico1hico1=max(hico1,high)endifif p1b>p2b and sto1b<sto2b and x crosses under y and x<x[1] thensignB= 5 //-2elsesignB= 0endif// DIVERGENCES HAUSSIERES TTIif x<y thenlo=min(lo,x)lowco=min(lowco,min(low,low[1]))endifif x CROSSES OVER y thensto2h=sto1hsto1h=lolo=100p3h=p1hp2h=min(p1h,lowco1)p1h=min(lowest[3](low),lowco)if p2h=p1h thenp2h=min(p3h,p4h)endiflowco=100000lowco1=100000endifif x>y thenp4h=lowco1lowco1=min(lowco1,low)endifif p1h<p2h and sto1h > sto2h and x crosses over y and x>x[1] thensignH= 5 //2elsesignH= 0endif////////////////////////////////////////////////return signH as " div TTI H ", signB as " div TTI B " , 0 as " zero "<strong>// Variable : p = 7</strong>J’aimerai faire ressortir dans le screener les valeurs du jour qui répondent à “signH et signB “
Je joins un graphe de l’indicateur sur GTT
bon dimanche
12/22/2017 at 4:51 PM #5638412/30/2017 at 4:56 PM #5687901/11/2018 at 6:38 PM #5908801/11/2018 at 11:38 PM #59125 -
AuthorPosts
Find exclusive trading pro-tools on