Gann high-low activator

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #236084 quote
    toulinetouline
    Participant
    Senior

    Bonjour
    Pourriez-vous convertir cet indicateur mq4 vers prorealtime  s’il vous plait
    Un grand merci d avance
    Cordialement

     

    Gann-High-Low-activator-Vlines.mq4 Sans-titre.png-kk.png Sans-titre.png-kk.png
    #236089 quote
    JSJS
    Participant
    Master

    Salut,

    Il s’agit d’une version modifiée (couleurs) de l’indicateur de la bibliothèque…

    //PRC_Gann HighLow Activator | indicator
    //31.12.2016
    //Nicolas @ http://www.prorealcode.com
    //Sharing ProRealTime knowledge
    //Converted from Metastock version

    // — parameters
    period = 3
    // —

    avgH = average[period](high)[1]
    avgL = average[period](low)[1]

    if close>avgH then
    hilo = 1
    elsif close<avgL then
    hilo = 0
    endif

    if hilo then
    gannHiLo = avgL
    DrawPoint(BarIndex, avgL,2)Coloured(“Green”)
    color = 1
    else
    gannHiLo = avgH
    DrawPoint(BarIndex, avgH,2)Coloured(“Red”)
    color = -1
    endif

    r = 0
    g = 255
    b = 0
    t = 255

    IF color = -1 THEN
    r = 255
    g = 0
    t = 255
    ENDIF

    DrawCandle(Open,High,Low,Close) coloured(r,g,b,t)

    RETURN //GannHiLo style(dottedline) coloured(r,g,b,t) AS “GannHiLo Activator”

    Iván González thanked this post
    Scherm­afbeelding-2024-08-03-om-14.00.28.png Scherm­afbeelding-2024-08-03-om-14.00.28.png
    #236099 quote
    toulinetouline
    Participant
    Senior

    bonjour,

    desoslé mais sa ne corespond pas au code mq4 que j’ai fourni,

    serait-il possible de  traduire le code mq4 voir la photo fourni merci. cordialement

    #236241 quote
    Iván GonzálezIván González
    Moderator
    Legend

    Par conséquent, vous voyez seulement le manque des lignes verticales :

    Lb = 9
    
    if close > Average[Lb](High)[1] then
    trend = 1
    gann = Average[ Lb ](low)[1]
    r=0
    g=125
    b=0
    elsif close < Average[Lb](Low)[1] then
    trend = -1
    gann = Average[Lb](high)[1]
    r=255
    g=0
    b=125
    else
    trend = trend
    endif
    
    if trend <> trend[1] then
    if trend = 1 then
    drawvline(barindex)coloured(r,g,b)style(dottedline,1)
    elsif trend = -1 then
    drawvline(barindex)coloured(r,g,b)style(dottedline,1)
    endif
    endif
    
    return gann as "Gann"coloured(r,g,b)style(line,2)
    #236243 quote
    toulinetouline
    Participant
    Senior

    Salut Ivan,

    super travail

    Merci beaucoup

    Cordialement,

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

Gann high-low activator


ProBuilder : Indicateurs & Outils Personnalisés

New Reply
Author
author-avatar
touline @touline Participant
Summary

This topic contains 4 replies,
has 3 voices, and was last updated by toulinetouline
2 years, 1 month ago.

Topic Details
Forum: ProBuilder : Indicateurs & Outils Personnalisés
Language: French
Started: 08/03/2024
Status: Active
Attachments: 3 files
ProRealCode ProRealCode
Loading...