Mio PRICE OSCILLATOR evo

Forums ProRealTime forum Italiano Supporto ProBuilder Mio PRICE OSCILLATOR evo

Viewing 3 posts - 1 through 3 (of 3 total)
  • #236502
    SlowPeriod=35
    FastPeriod=5
    LookBackPeriod=SlowPeriod*FastPeriod

    Nella precedente richiesta ho commesso un errore, ho richiesto di inserire il mio “PRICE OSCILLATOR” in una scala di valori da 0 a 100 come RSI.

    Un utente mi ha mandato uno script che funziona benissimo, però  in realtà la scala di valori dovrebbe essere da 100 a -100 come nel MACD.

    Riporto qui lo script che mi è stato mandato e se possibile modificarlo per avere, appunto, una scala dai valori da 100 a -100, spero possiate aiutarmi Grazie.

    AvgSlow=Average[SlowPeriod](close)
    AvgFast=Average[FastPeriod](close)
    Diff=Abs(AvgSlowAvgFast)
    MinDiff=Lowest[LookBackPeriod](Diff)
    MaxDiff=Highest[LookBackPeriod](Diff)
    NormDiff=((DiffMinDiff)/(MaxDiffMinDiff))*100
    Return NormDiff
    #236506

    Cambia la penultima riga con questa:

     

    #236544

    Grazie sempre gentilissimi.

     

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