SCREENER DIVERGENCES TTI

Viewing 15 posts - 1 through 15 (of 33 total)
  • Author
    Posts
  • #36885 quote
    supertiti
    Participant
    Master

    Bonjour à tous,

    A partir du code Nicolas sur le TTI stochastique extrème disponible dans la bibliothèque

    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 TTI STOCHASTIC EXTREME
    // DIVERGENCES TTI STOCHASTIC EXTREME
    //TTI Sctochastic Extreme PRC 12.05.2017
    //Nicolas @ www.prorealcode.com
    if close>average[ma] then
    x1 = std[ma]
    else
    x1 = -1*std[ma]
    endif
    //x2 = (summation[3](x1-lowest[5](x1))/summation[3](highest[5](x1)-lowest[5](x1)))*100
    x3 = 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 HKlisse
    x = b [11]
    y=average[2](x)
    //  DIVERGENCES BAISSIERES  TTI
    if x>y then
    hi=max(hi,x)
    hico=max(hico,max(high,high[1]))
    endif
    if x crosses under y then
    sto2b=sto1b
    sto1b=hi
    hi=0
    p3b=p1b
    p2b=max(p1b,hico1)
    p1b=max(highest[3](high),hico)
    if p2b=p1b then
    p2b=max(p3b,p4b)
    endif
    hico=0
    hico1=0
    endif
    if x<y then
    p4b=hico1
    hico1=max(hico1,high)
    endif
    if p1b>p2b and sto1b<sto2b and x crosses under y and x<x[1] then
    signB= 5 //-2
    else
    signB= 0
    endif
    //  DIVERGENCES HAUSSIERES  TTI
    if x<y then
    lo=min(lo,x)
    lowco=min(lowco,min(low,low[1]))
    endif
    if x CROSSES OVER y  then
    sto2h=sto1h
    sto1h=lo
    lo=100
    p3h=p1h
    p2h=min(p1h,lowco1)
    p1h=min(lowest[3](low),lowco)
    if p2h=p1h then
    p2h=min(p3h,p4h)
    endif
    lowco=100000
    lowco1=100000
    endif
    if x>y then
    p4h=lowco1
    lowco1=min(lowco1,low)
    endif
    if p1h<p2h and sto1h > sto2h and x crosses over y and x>x[1]  then
    signH= 5 //2
    else
    signH= 0
    endif
    ////////////////////////////////////////////////
    // return       signH as " div TTI H ", signB as " div TTI B " , 0 as " zero "
    Ma = 14
    SCREENER [ signH or signB ]
    
    #48619 quote
    supertiti
    Participant
    Master

    Bonjour, bon dimanche

    Toujours personne pour coder ce screener qui retournerait signH et signB

    Il me semble assez pertinent

    merci pour vos suggestions

    #49430 quote
    supertiti
    Participant
    Master

    UP

    #50367 quote
    supertiti
    Participant
    Master

    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 bienvenue

    bons trades

    #50947 quote
    supertiti
    Participant
    Master

    Alors toujours personne pour éclairer ma lanterne sur ce très bon screener ?

    Bonne journée à tous

    #50948 quote
    supertiti
    Participant
    Master

    Voici un exemple sur Orange , signaux dans les élipses jaunes …

    TTI-screener.jpg TTI-screener.jpg
    #53297 quote
    supertiti
    Participant
    Master

    Bonjours à tous

     

    Toujours pas d’amateurs pour faire ressortir le screener de signB et signH ?

    merci de votre aide.

    Bonne journée et bons trades.

    #54994 quote
    supertiti
    Participant
    Master

    @ 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.

    Societe-GLE.jpg Societe-GLE.jpg
    #55814 quote
    supertiti
    Participant
    Master

    Bonjour à tous,

    Toujours sans réponse ?! ni un oui c’est faisable ni un non ça ne l’est pas.

    alors personne ?

    bon week-end.

     

    CAC-TTI.jpg CAC-TTI.jpg
    #55855 quote
    Nicolas
    Keymaster
    Legend

     Dé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 ?

    #55860 quote
    supertiti
    Participant
    Master

    Bonjour Nicolas,

     

    merci de prendre sur ton temps pour regarder ma requête.

    Voici le code utilisé :

    // DIVERGENCES TTI STOCHASTIC EXTREME
    //TTI Sctochastic Extreme PRC 12.05.2017
    //Nicolas @ www.prorealcode.com
    if close>average[ma] then
    x1 = std[ma]
    else
    x1 = -1*std[ma]
    endif
    //x2 = (summation[3](x1-lowest[5](x1))/summation[3](highest[5](x1)-lowest[5](x1)))*100
    x3 = 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 HKlisse
    x = b [p]
    y=average[2](x)
    //  DIVERGENCES BAISSIERES  TTI
    if x>y then
    hi=max(hi,x)
    hico=max(hico,max(high,high[1]))
    endif
    if x crosses under y then
    sto2b=sto1b
    sto1b=hi
    hi=0
    p3b=p1b
    p2b=max(p1b,hico1)
    p1b=max(highest[3](high),hico)
    if p2b=p1b then
    p2b=max(p3b,p4b)
    endif
    hico=0
    hico1=0
    endif
    if x<y then
    p4b=hico1
    hico1=max(hico1,high)
    endif
    if p1b>p2b and sto1b<sto2b and x crosses under y and x<x[1] then
    signB= 5 //-2
    else
    signB= 0
    endif
    //  DIVERGENCES HAUSSIERES  TTI
    if x<y then
    lo=min(lo,x)
    lowco=min(lowco,min(low,low[1]))
    endif
    if x CROSSES OVER y  then
    sto2h=sto1h
    sto1h=lo
    lo=100
    p3h=p1h
    p2h=min(p1h,lowco1)
    p1h=min(lowest[3](low),lowco)
    if p2h=p1h then
    p2h=min(p3h,p4h)
    endif
    lowco=100000
    lowco1=100000
    endif
    if x>y then
    p4h=lowco1
    lowco1=min(lowco1,low)
    endif
    if p1h<p2h and sto1h > sto2h and x crosses over y and x>x[1]  then
    signH= 5 //2
    else
    signH= 0
    endif
    ////////////////////////////////////////////////
    return       signH as " div TTI H ", signB as " div TTI B " , 0 as " zero "
    // Variable : p = 7

    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

    DIV-TTI-GTT.jpg DIV-TTI-GTT.jpg
    #56384 quote
    supertiti
    Participant
    Master
    @ Nicolas,   Crois tu que j’aurai le code pour le réveillon ? Bien sûr je rigole ! alors faisable ,compliqué ou infaisable ? Bonnes fêtes à tous.
    #56879 quote
    supertiti
    Participant
    Master
    Encore une chance d’avoir le code avant le dernier réveillon ? graphe joint de Rothchild
    ROTH-TTI.jpg ROTH-TTI.jpg
    #59088 quote
    supertiti
    Participant
    Master
    Toujours pas de solution ? graphe joint de TF1
    TF1-TTI.jpg TF1-TTI.jpg
    #59125 quote
    Alai-n
    Participant
    Veteran
    Début au 29.05.2017 quand même !!! 🙂 En tout cas c’est très joli…Tu  as choisis de très belles couleurs pour tes graphes 😉   Bon courage… “La patiente est une vertu qui porte toujours sa récompense avec elle”…
Viewing 15 posts - 1 through 15 (of 33 total)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

SCREENER DIVERGENCES TTI


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
supertiti @supertiti Participant
Summary

This topic contains 32 replies,
has 3 voices, and was last updated by supertiti
8 years, 6 months ago.

Topic Details
Forum: ProScreener : Scanners de Marché & Détection
Language: French
Started: 05/29/2017
Status: Active
Attachments: 10 files
Logo Logo
Loading...