PERFECT TRENDLINE 2 PRC Nicolas

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #199046 quote
    supertiti
    Participant
    Master

    Bonjour à tous,

    De retour de la plage on se remet au boulot bien à l’ombre , en ce moment c’est le perfect trendline qui occupe mes journées.

    Cet indicateur me semble d’un intérêt certain , j’ai dessiné une stratégie en partant des bandes de Bollinger et de cet indicateur

    comme je suis pas bon en programmation je le fais de visu.

    Pour affiner l’étude de cet indicateur serait-il possible d’entourer les chandeliers gris par leurs équivalents avec une bordure verte ou rouge ( bordercolor (143,255,31)//vert) ( bordercolor (200,20,60)//rouge)

    je joins un graphe pour préciser mon idée.
    Bon dimanche

    // 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
    
    // --- settings
    //SlowLength         = 7 // Slow length
    //FastLength         = 3 // Fast length
    // --- end of settings
    
    fasthigh = Highest[SlowLength](high)//[1]
    fastlow  = Lowest[SlowLength](low)//[1]
    slowhigh = Highest[FastLength](high)//[1]
    slowlow  = Lowest[FastLength](low)//[1]
    
    if high<slowhigh then
    thighs=slowhigh
    else
    thighs=high
    endif
    if low>slowlow then
    tlows=slowlow
    else
    tlows=low
    endif
    if high<fasthigh then
    thighf=fasthigh
    else
    thighf=high
    endif
    if low>fastlow then
    tlowf=fastlow
    else
    tlowf=low
    endif
    
    if close>slowln[1] then
    slowln=tlows
    else
    slowln=thighs
    endif
    if close>fastln[1] then
    fastln=tlowf
    else
    fastln=thighf
    endif
    
    once trend=-1
    if close<slowln and close<fastln then
    trend=1
    endif
    if close>slowln and close>fastln then
    trend=0
    endif
    
    if trend<>trend[1] then
    if trend=0 then
    r=30
    g=144
    b=255
    else
    r=200
    g=20
    b=60
    endif
    drawtext("●",barindex,fastln,Dialog,Bold,30) coloured(r,g,b)
    endif
    drawcandle(open,high,low,close) coloured(168,168,168)
    if trend=0 then
    if close>slowln then
    drawcandle(open,high,low,close) coloured(30,144,255)
    endif
    elsif trend=1 then
    if close<slowln then
    drawcandle(open,high,low,close) coloured(200,20,60)
    endif
    endif
    
    
    return fastln coloured(30,144,255) as "fast line",slowln coloured(200,20,60) as "slow line"//, trend as "trend"
    
    PERFECT-Trendline-2-PRC.jpg PERFECT-Trendline-2-PRC.jpg
    #199090 quote
    supertiti
    Participant
    Master

    Bon j’ai réussi tout seul comme un grand il suffit de rajouter ce bout de code

    ainsi on a en bordure la couleur du chandelier sous-jacent

    bonne soirée

    /////////////////////////////////////////////////////////////
    //////////////////////////////////////////////////////////////////
    If close > open then
    drawcandle(open,high,low,close) coloured(30,144,255) bordercolor (143,255,31)
    endif
    If close < open then
    drawcandle(open,high,low,close) coloured(200,20,60) bordercolor (200,20,60)
    endif
    
    ///////////////////////////////////////////////////////////////////
    /////////////////////////////////////////////////////////////
    PT2-Bordercolor-ALD.jpg PT2-Bordercolor-ALD.jpg
    #199177 quote
    supertiti
    Participant
    Master

    Bonsoir à tous

    beau signal sur une figure graphique en formation bien connue , vous la voyez j’espère … voyons si on ira jusqu’au bout de la figure ?¿

    joint le CAC en daily

    CAC-ETE-17082022.jpg CAC-ETE-17082022.jpg
    #200034 quote
    supertiti
    Participant
    Master

    Bonsoir à tous,

    L’objectif de la figure du CAC40 est atteint même dépassé ! tout le monde avait vu l’ETE j’espère.

    Alors est-ce le moment de se replacer ? place à a psychologie et peut-être une capitulation pour nous emmener vers 5876.(ou plus ?)

    Pour l’instant pas de signal sur le Perfect trendline 2

    je joins le graphe du CAC

    CAC-PT2-1er-Sept.jpg CAC-PT2-1er-Sept.jpg
    #200064 quote
    supertiti
    Participant
    Master

    Bonsoir à tous

    Alors on se replace sur les banques ou c’est encore trop tôt ?

    Quelques beaux signaux

    BNP, BBVA, GLE

    Bon week-end à tous

    BBVA-0209.jpg BBVA-0209.jpg BNP-0209.jpg BNP-0209.jpg GLE-02.jpg GLE-02.jpg
    #200229 quote
    supertiti
    Participant
    Master

    Total Energies Gabon + 15 % aujourd’hui et un dividende exceptionnel voté le 23 septembre de 56 dollars environ.

    bons trades à tous

    TTE-G-060922.jpg TTE-G-060922.jpg
    #200447 quote
    supertiti
    Participant
    Master

    CAC40

    C’est beau quand l’analyse graphique a l’air de fonctionner ?!

    On a le signal … à vos marques , prêts , …. Objectif 6613

    Bons trades à tous

    CAC40-090922.jpg CAC40-090922.jpg
    #200450 quote
    supertiti
    Participant
    Master

    CAC40 09.09.2022

    CAC40-RSRMA.jpg CAC40-RSRMA.jpg
    #200545 quote
    supertiti
    Participant
    Master

    ALD avec un rendement de 10.60 % et une plus value possible d’autant , alors pourquoi pas ?

    graphe daily joint avec son beau signal

    bons trades à tous

    Nicolas thanked this post
    ALD-09092022.jpg ALD-09092022.jpg
    #206339 quote
    supertiti
    Participant
    Master

    Bonsoir

    Cette année JCbyWan m’avait donné un coup de main afin de matérialiser en chiffre le pourcentage entre deux points du perfect trendline 2.

    Impossible de retrouver le post ?!

    Est-il possible de différencier la couleur du résultat selon qu’il est positif ou négatif ?

    bonnes fêtes à tous.

    AXA-PT2.jpg AXA-PT2.jpg
    #206351 quote
    JC_Bywan
    Moderator
    Master
Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.

PERFECT TRENDLINE 2 PRC Nicolas


ProBuilder : Indicateurs & Outils Personnalisés

New Reply
Author
author-avatar
supertiti @supertiti Participant
Summary

This topic contains 10 replies,
has 2 voices, and was last updated by JC_Bywan
3 years, 2 months ago.

Topic Details
Forum: ProBuilder : Indicateurs & Outils Personnalisés
Language: French
Started: 08/14/2022
Status: Active
Attachments: 12 files
Logo Logo
Loading...