CODE ACCELERATING DUAL MOMEMTUM SCORE

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #260938 quote
    SOBOULSOBOUL
    Participant
    Junior

    Bonsoir,

    pouvez vous coder cet indicateur de Tradingview. Par avance, merci.

    #260943 quote
    NicolasNicolas
    Keymaster
    Legend

    Bonjour, oui on va pouvoir vous aider aucun problème. Par contre est-il possible de nous aider aussi un peu en nous donnant quelques élément sur ce code ? Son code justement, un lien ou une image ? Merci par avance.

    #260946 quote
    JSJS
    Participant
    Master

    Hello, voici l’indicateur de momentum ainsi que le screener correspondant…

    once month1=21
    once month3=63
    once month6=126
    
    
    m1=(Close/Close[month1]-1)*100
    m3=(Close/Close[month3]-1)*100
    m6=(Close/Close[month6]-1)*100
    
    
    w=(m1+m3+m6)/3
    
    
    If w>0 then
    g=255
    r=0
    b=0
    else
    g=0
    r=255
    b=0
    EndIf
    
    
    Return w as "ADMS" Coloured(r,g,b)Style(Histogram)
    


    once month1=21
    once month3=63
    once month6=126
    
    
    m1=(Close/Close[month1]-1)*100
    m3=(Close/Close[month3]-1)*100
    m6=(Close/Close[month6]-1)*100
    
    
    w=(m1+m3+m6)/3
    
    
    Screener(w as "ADMS")
    


    Nicolas, Iván González and robertogozzi thanked this post
    Scherm­afbeelding-2026-05-10-om-12.04.55-scaled.png Scherm­afbeelding-2026-05-10-om-12.04.55-scaled.png
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

TradingView to ProRealTime Translation Center

New Reply
Author
author-avatar
SOBOUL @soboul Participant
Summary

This topic contains 2 replies,
has 3 voices, and was last updated by JSJS
4 months, 2 weeks ago.

Topic Details
Forum: TradingView to ProRealTime Translation Center Forum
Started: 05/09/2026
Status: Active
Attachments: 1 files
ProRealCode ProRealCode
Loading...