Indicador suba más de tres sesiones Butterworth

Forums ProRealTime foro Español Soporte ProBuilder Indicador suba más de tres sesiones Butterworth

Viewing 2 posts - 1 through 2 (of 2 total)
  • #68303

    Hola, Buemas tardes,

    Tengo este indicador que lo cogi de aqui “Butterworth”

    Quiero crear uno muy sencillo que diga que si Butterworth es mayor que Butterworth en n(variable) dias pues me lo indique.

    No tengo ni idea de como empezar, he intentado duplicar indicadores y empezar a probar pero no lo resuelvo.

    Muchas gracias de antemano

     

     

    #68337

    Hola,

    El indicador es este:

    // ———————————————————————
    // Filtro di Butterworth
    //
    // Il filtro Butterworth (o “massimamente piatto”) è uno dei più semplici filtri elettronici.
    // Il suo scopo è ottenere una risposta in frequenza il più possibile piatta nella banda passante.
    //
    // Applicato all’evoluzione dei prezzi mira a filtrare il “rumore di fondo” e dare un indicazione sulla direzione del prezzo più leggibile.
    // ———————————————————————
    IF BarIndex < 2 THEN
    Butterworth= Close
    ELSE
    Butterworth= Butterworth[1] (Butterworth[2] / 3.414) + Close * ( 1 /3.414)
    ENDIF
    RETURN Butterworth AS “Filtro di Butterworth “
    // ———————————————————————
Viewing 2 posts - 1 through 2 (of 2 total)

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