Butterworth Filter

Butterworth Filter

EN : The Butterworth filter (or “maximally flat”) is one of the simplest electronic filters. Its purpose is to obtain a frequency response of the flat as possible in the passband. Applied to the retail price index aims to filter out the “noise” and give you an indication on the direction of the more readable price.

IT: 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.

 

Share this

Risk disclosure:

No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.

ProRealTime ITF files and other attachments : How to import ITF files into ProRealTime platform?

PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials

  1. Fabio Anthony Terrenzio • 09/07/2016 #

    Volendo aumentare l’effetto filtrante, quali parametri dovrei modificare?

    • StefanoCG • 09/07/2016 #

      puoi sostituire nella riga  di comando 
      Butterworth = Butterworth[1] - (Butterworth[2] / 3.414) + Close * ( 1 /3.414)quest\'altra
      Butterworth = Butterworth[1] - (Butterworth[2] / 3.414) + Close * ( G /3.414)G = numeri interi da 1 in su

    • Fabio Anthony Terrenzio • 09/07/2016 #

      Con G == 2 —> (2 / 3.414)…. la linea sparisce

    • Fabio Anthony Terrenzio • 09/07/2016 #

      La formula corretta per accentuare il filtro tramite parametro G è:
      Butterworth = Butterworth[1] – (Butterworth[2] / (G*3.414)) + Close * ( 1 /(G*3.414))

    • Nicolas • 09/07/2016 #

      Do I need to change the code accordingly to your formula?

    • Fabio Anthony Terrenzio • 09/07/2016 #

      Good idea

  2. StefanoCG • 09/07/2016 #

    ciao Fabio … non hai mica tutti i torti … la notte bisognerebbe dormire per non scrivere baggianate 🙂 
    // ---------------------------------------------------------------------
    // Filtro di Butterworth
    // -------------------------- VARIABILI
    //G = 1 default
    // ---------------------------------------------------------------------
    IF BarIndex < 2 THEN
    Butterworth = Close
    ELSE
    Butterworth = Butterworth[1] - (Butterworth[2] / (G*3.414)) + Close * ( 1 /(G*3.414))
    ENDIF

    RETURN Butterworth AS \"Filtro di Butterworth \"
    // ---------------------------------------------------------------------
     

avatar
Register or

Likes

avatar
Related users ' posts
adeelq79 Great work Ivan. Thanks
Quino Another really interesting indicator. It works very well on periods below 25. Just a few cos...
supertiti hola Ivan Eso quiere decir que el Parabolic sar RSI est igual al parabolic sar de PRT ? p...
supertiti buenas tardes Ivan me gusteria tener lo mismo on chart con los puntos azules y rosas de c...
LucasBest Thanks for the translation. This one can be compared to dynamic zone RSI
Iván
1 month ago
Iván Sorry... There is a mistake in line 76. Should be if openday[i]openday[i+1] then
DLVx You do not specify how to read the Calmar ratio. Above 1 is OK and 0 is neutral? Can you she...
lee HI thank you for this indicator. Is it possible to create a screener based on this for when ...
xpe74 Hello it seems the file format does not allow to import the file. At importation stage, an e...
Iván You always can copy/paste directly from the post
roccafragius Thank you so much, for my point of view very useful!!!
NicoGB67 Excelente trabajo!!
Jrmjrm Bonsoir est-il possible d'avoir cet indicateur, mais à la place du Wilder Average, utiliser ...
geroniman merci Ivan, super indicatuer. Les cours vont souvent toucher 50% des zones vertes ou rouges....
Iván Pour ajouter une ligne supplémentaire, il suffit de créer une nouvelle variable, par exemple...
Maurizio A. excellent indicateur ! comment puis-je modifier le code pour afficher uniquement les dernier...
Iván Hi! just change line13 for this: showsignals=1
Quino Hi Excellent indicator as usual. Just 2 questions: Why LenH and LenL = 15 as Len could be...
Iván Hi! good question. This is a code request traslation from other platform. I took same inputs...

Top