Tracé des droites qui bornent l’OPR

Forums ProRealTime forum Français Support ProBuilder Tracé des droites qui bornent l’OPR

Viewing 3 posts - 16 through 18 (of 18 total)
  • #235275

    Bonjour et merci pour votre aide précieuse.

    PRT m’affiche 2 erreurs à la fin de mon code, concernant les lignes sur l’affichage de la variation de la bougie

    pourriez-vous me les corriger svp ?

     

    merci.

    DEFPARAM drawonlastbaronly = true

    StartHour = 9
    StartMinute = 0
    EndHour = 9
    EndMinute = 15

    if openhour <> openhour[1] and openhour = startHour then
    OPRHigh = high
    OPRLow = low
    endif

    if openhour = StartHour and openminute < endMinute then
    if high > OPRHigh then
    OPRHigh = high
    endif
    if low < OPRLow then
    OPRLow = low
    endif
    endif

    DrawHLine(OPRHigh) coloured(0,255,0) style(line,2)
    DrawHLine(OPRLow) coloured(255,0,0) style(line,2)

    // Calcul de la variation de la bougie
    BougieVariation = Close – Open

    // Affichage de la variation sur le graphique
    if BougieVariation >= 0 then
    DrawText(“+” + NumToStr(BougieVariation, 2), barindex, Low – (ATR(14) * 0.5)) coloured(0,255,0)
    else
    DrawText(NumToStr(BougieVariation, 2), barindex, Low – (ATR(14) * 0.5)) coloured(255,0,0)
    endif

    return Close

    #235277

    Bonjour ici:

    #235283

    merci bcp, mais souhaiterais que la variation s’affiche uniquement sur la bougie de l’opr (celle comprise entre 9h et 9h15)

    merci

Viewing 3 posts - 16 through 18 (of 18 total)

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