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
Nicolas
9 years ago
Adaptive CCI
Adaptive CCI
4
Indicators
Stef Thanks @Saud. Enjoyed the article.
Newbie I've tried to modify this so I can display on 1min chart with the 5 min chart variant as a s...
Nicolas No, just create 2 different indicators in this case, one with the timeframe(5 minutes) and o...
GraHal Hi Nicolas I like this and would like to understand it fully so please forgive the (maybe) d...
Nicolas Hi GraHal, the Factor parameter is only a multiplier of the ATR that is added or subtracted ...
GraHal Nicolas, thank you for your useful and informative response. Yes I optimise using ProBackte...
Denis Hello, Congratulations and thank you for this work. I do not understand one thing, however...
Nicolas
9 years ago
GraHal Hi Nicolas Britains .itf file didn't work for me ... I had to change h to hh at line 13 and...
Nicolas Thank you GraHal for pointing this error, i have corrected the code in the file. The code in...
sr021 Hi I tried to copy and paste the code, but recieve the message  : Syntax error:The followi...
Nicolas Hello, of course. You have 3 options : 1/ you download the file and import it into your plat...
Nicolas
9 years ago
Nicolas
9 years ago
Nicolas
9 years ago
trabucaire Hello, what does it mean the 20 and 40 number on this code ? Thank you !
robertogozzi I modified it to make parameters customizable and to Draw a Grey candlestick when a range is...
Nicolas
9 years ago
Blai5 CazaGaps
Blai5 CazaGaps
0
Indicators
Nicolas
9 years ago
Blai5 BB double
Blai5 BB double
0
Indicators
Nicolas
9 years ago
Blai5 ATLAS Mini
Blai5 ATLAS Mini
0
Indicators
Nicolas
9 years ago
Blai5 Astro indicator
Blai5 Astro indicator
0
Indicators
throwaway200
9 years ago
Super Smoothed WMA
Super Smoothed WMA
0
Indicators
dakaodo Very useful when initially learning the timing and rhythm of an instrument. Before using thi...
Denis Then I have tried this but nor does it run : //coloring histogram if pctRankT>=pctile...
Denis Here we are ! //coloring histogram if pctRankT>=pctile/100 then r=255 g=0 b=0 els...
Denis Hi Edisone, see my last comment for setting colors
dave
10 years ago
Value Chart High/Low
Value Chart High/Low
12
Indicators
tfx This was my first thought, but 1 minute bars don't look like these on my charts. Hmm...
daveAF  It's SP500 before Wall Street open. 
tfx I will be looking into it. Thank you for responding!
hq76
10 years ago
Ahoora Trend
Ahoora Trend
0
Indicators
dave
10 years ago
Wolf Just for information: This calculate code is interesting, but it is not a Triangular Moving...
Dron Hola Lobo, soy nuevo en programación, pero me interesa ese indicador, en tu mensaje estas ha...
supertiti // TMA CENTER Channel by Dave modifié // parameters // HalfLength = 50 // AtrLength = 10...
Nicolas
10 years ago
Nicolas Thanks for commenting. Well, it is not "my" indicator, it is one I have adapted from other t...
hq76 OK I will do it. Are there any possibilities to transform other indicators please?
Nicolas Yes it is possible, as long as it is possible to have the same functionalities. You can post...

Top