Gann high-low activator

Forums ProRealTime forum Français Support ProBuilder Gann high-low activator

Viewing 5 posts - 1 through 5 (of 5 total)
  • #236084

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

     

    #236089
    JS

    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”

    1 user thanked author for this post.
    #236099

    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

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

    #236243

    Salut Ivan,

    super travail

    Merci beaucoup

    Cordialement,

Viewing 5 posts - 1 through 5 (of 5 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login