Indicatore su grafico

Forums ProRealTime forum Italiano Supporto ProBuilder Indicatore su grafico

Viewing 3 posts - 1 through 3 (of 3 total)
  • #219544

    Buon giorno vorrei sapere se è possibile mettere i dati di un mio indicatore che mi calcola Stop, Entry e Target, inoltre ovvio solo se è possibile fare apparire solo l’ultimo dato per evotare confusione, allego il codice anche se non ho bisogno dai assistenza su di esso.

    // Coefficente su A.T.R.
    Mioatr = averagetruerange[14](close)
    Mediaatr = Average[50](Mioatr)
    Coefficente = (Mediaatr*atr)
    // MIN-MAX PIVOT POINT
    Minimo = lowest[Regressione](low)
    Massimo = highest[Regressione](high)
    // Short position Stop
    Stopshortposition = (Massimo + coefficente)
    // livello di ingresso short
    Ingressoshort = Minimo
    // Short position target
    C1 = (Stopshortposition – Ingressoshort)
    C2 = C1*Miotarget
    Targetshort = (Ingressoshort – C2)
    //Longposition Stop
    Stoplongposition = (Minimo – coefficente)
    // Livello di ingresso short
    Ingressolong = Massimo
    // Target long
    C1bis = (Ingressolong – Stoplongposition)
    C2bis = (C1bis * Miotarget)
    Targetlong = (Ingressolong + C2bis)
    return Stopshortposition as “stop short entry”,Ingressoshort as “ingresso short”, Targetshort as “Target short”, Stoplongposition as “Stop long entry”, Ingressolong as ” Ingresso long”, Targetlong as “Targetlong”

    #219545

    Le variabili atr, Regressione, Miotarget, sono variabili modificabili.

    #219575

    Indica i valori standard da mettere nelle 3 variabili, oppure allega il file ITF.

     

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

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