MAE Movin Average Extension

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #216716 quote
    supertitisupertiti
    Participant
    Master

    Bonjour à tous,

    En ce moment comme beaucoup j’aime jouer à Madame Irma ou madame Soleil pour les plus jeunes (les jeunes ne devraient pas savoir de quoi je parle !) ,

    bref en résumé c’est fabriquer une boule de cristal .

    J’ai fais ceci , que les codeurs experts apportent leurs remarques si quelque chose les chiffonnent.

    ///////////////////////////////////////////////////////////////////////////////////
    
    // MAE Moving Average Extension  25 juin 2023
    
    MA = average [p](close)
    //MA1 = average [p1](close)
    //////////////////////////////////////////////////////
    devhi = ma +((dev/100)*ma)
    //devhi1 = ma1 +((dev1/100*ma1))
    //devlo = ma-((dev/100)*ma)
    //////////////////////////////////////////////////////
    if islastbarupdate then
    for i = 1 to x do
    drawsegment(barindex+i,devhi[x -i],barindex+i-1,devhi[x-i+1])STYLE(dottedline,5)coloured (0,245,255)//("blue")
    //drawsegment(barindex+i,devhi1[x -i],barindex+i-1,devhi1[x -i+1])STYLE(dottedline,5)coloured ("pink")
    next
    endif
    
    return customclose as "customclose" , MA as " MA " // , MA1
    
    // Variables :
    // p = période = 20
    // p1 = période = 30
    // dev = déviation décimale en pourcent
    // dev1 = déviation décimale en pourcent
    
    ////////////////////////////////////////////////////////////////////////

     

    Bon dimanche

    Nicolas thanked this post
    MAE-Service-now-Inc.jpg MAE-Service-now-Inc.jpg
    #216756 quote
    NicolasNicolas
    Keymaster
    Legend

    Pour référence, le code ci-dessus retrace dans le futur x valeurs de la moyenne mobile du passé à partir de la barre courante.

    #221016 quote
    Meta Signals ProMeta Signals Pro
    Participant
    Veteran

    @supertiti Moi je trouve cela super intéressant l’avenir 🙂

    Vous ne voulez pas vous pencher sur ce cas qui me semble plus prophétique 😉 ?

    Dominant Cycle calculation by band pass crossing over

Viewing 3 posts - 1 through 3 (of 3 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

MAE Movin Average Extension


ProBuilder : Indicateurs & Outils Personnalisés

New Reply
Author
author-avatar
supertiti @supertiti Participant
Summary

This topic contains 2 replies,
has 3 voices, and was last updated by Meta Signals ProMeta Signals Pro
3 years ago.

Topic Details
Forum: ProBuilder : Indicateurs & Outils Personnalisés
Language: French
Started: 06/25/2023
Status: Active
Attachments: 1 files
ProRealCode ProRealCode
Loading...