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
10 years ago
Nicolas Just replace the last line with this : RETURN dm as "Volume Weighted MACD", masignal as "Si...
thomas2004ch I happen to read this article. I would say the formel 'd = maslow - mafast' could be inverse...
Nicolas You are right! but still the picture is looking good. The formula is inverted! dunno why :) ...
Nicolas
10 years ago
petmut Hello all, When I import the code here above "multiple ATR bands" and apply it on the PRT ...
Nicolas That should need some custom coding, if you want to make it done, please open a new topic in...
Patopercho Hello, thanks for the indicator, i would like to change the color, is it possible, thanks
Nicolas
10 years ago
patrick3 Merci Nicolas pour cet indicateur, il est très utile pour voir les vagues
Vicari0us Really liking this indicator. Thanks
SB-FO Moving your last response to this post. Thanks for conforming the code below. How does PRT/...
Nicolas It is obtained by substracting the x days before Close from today’s Close. X is the paramete...
Nicolas
10 years ago
Pivot oscillator
Pivot oscillator
3
Indicators
supertiti // PIVOT OSCILLO onchart PRC DID Pivot Oscillator - ProRealCode - prorealtime prog...
supertiti https://hubic.com/home/pub/?ruid=aHR0cHM6Ly9sYjEuaHViaWMub3ZoLm5ldC92MS9BVVRIXzFiNjRhYmY3ZjA...
supertiti http://ovh.to/rbcdfr2

Top