Modifica screener in indicatore

Forums ProRealTime forum Italiano Supporto ProBuilder Modifica screener in indicatore

Viewing 6 posts - 1 through 6 (of 6 total)
  • #236739

    Buongiorno,

    volevo chiedere se è possibile modificare uno screener che ho trovato di recente nella libreria, facendolo diventare un indicatore.

    Grazie per il cortese aiuto.

     

    https://www.prorealcode.com/prorealtime-market-screeners/scans-for-freebars/

    #236744

    Bonjour

    par exemple:

    ATR = AverageTrueRange[20](fermer)
    ATRM = 2,25 * ATR

    MLine = ExponentialAverage[20](fermer)
    UChannel = MLine + ATRM
    LChannel = MLine – ATRM

    FreeBarUp = Low > UChannel
    FreeBarDown = High < LChannel
    si FreeBarUp et non FreeBarUp[1] alors
    DRAWARROWDOWN(barindex,high)coloré(255,0,0)
    endif
    si FreeBarDown et non FreeBarDown[1] alors
    DRAWARROWUP(barindex,low)coloré (0,255,0)
    fin si

    retourner UChannel, MLine, LChannel

    #236748

    Grazie e mille .

    Ho provato ma mi da il seguente codice di errore.

    Linea 1: errore interno : ordine sconosciuto

    Sembrebbe anche che evidenzi in giallo il termine “LChannel”.

    Da cosa potrebbe dipendere?

    Grazie ancora

    #236754

    ah ok c’est à cause de la traduction en francais du code

    utiliser celui ci :

    ATR = AverageTrueRange[20](close)
    ATRM = 2.25 * ATR

    MLine = ExponentialAverage[20](close)
    UChannel = MLine + ATRM
    LChannel = MLine – ATRM

    FreeBarUp = Low > UChannel
    FreeBarDown = High < LChannel
    if FreeBarUp and not FreeBarUp[1] then
    DRAWARROWDOWN(barindex,high)coloured(255,0,0)
    endif
    if FreeBarDown and not FreeBarDown[1] then
    DRAWARROWUP(barindex,low)coloured(0,255,0)
    endif

    return UChannel,MLine,LChannel

    #236755

    mes excuses prendre le fichier ci-joint

    1 user thanked author for this post.
    #236758

    Adesso funziona, grazie tante.!

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

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