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
10 years ago
U Trend Sensor
U Trend Sensor
4
Indicators
Nicolas Hi Stef, thanks again for contributing to my near perfect english :)
Salocin Hi Nicolas, seems to be a pretty cool one as an indicator. can you define "plotsingal". Syst...
Nicolas Download the itf file attached to the post, there's everything needed in it. Just import thi...
Nicolas
10 years ago
Kurtosis Oscillator
Kurtosis Oscillator
0
Indicators
Nicolas
10 years ago
Disparity Index
Disparity Index
0
Indicators
fabriziomerlo How to use KAMA averages [10 2 30] and [10 5 30] in order to have a screener going long or s...
Nicolas This moving average is the same as the Adaptive Moving Average available in the platform.
Nicolas
10 years ago
kmilo20000 Thank you!
Nicolas
10 years ago
ZeroLag MACD
ZeroLag MACD
13
Indicators
sam00075 Hi Nicolas, can you please upload a version with TEMA, so those who don't know how to code c...
Nicolas Use the MACD code here: https://www.prorealcode.com/topic/standard-prt-code-for-macd/#post-1...
Alai-n Afin d'avoir l'Histogramme Macd il faut rajouter ligne18 : HistogrammeMacd = ZeroLagMACD - S...
Nicolas
10 years ago
True Strength Index TSI
True Strength Index TSI
6
Indicators
gelex911 I confirm too that the formula given above differs from the predefined TSI. Why this missmatch?
Bateson Bonjour. L'indicateur fonctionne remarquablement. Je n'arrive cependant pas à l'intégrer d...
Fernando Hi I had same problem, so I translated from NinjaTrader TSI's formula to PRT code, seems the...
Nicolas
10 years ago
cosmicsurfer I actually live up the road from Daryl Guppy. On the first day of my training i walked aroun...
Pleidian Hi, I'm trying to add the guppy indicator to my charts but i keep getting a box that's says ...
Nicolas Wrong copy/paste? Always a better idea to download the ITF file and import it into the platf...
Nicolas
10 years ago
Coppock curve
Coppock curve
1
Indicators
caspita Thanks!
Nicolas
10 years ago
Kase Dev Stop
Kase Dev Stop
11
Indicators
Nicolas Yes Brad, do it. Post your other request on the dedicated indicator post. Thanks. I'll upda...
ooples Can anyone explain to me what Low[2] and Close[2] mean exactly?
Suzu Yuk The above-mentioned Kase’s research white paper link was broken and not working. http://www...
Nicolas
10 years ago
Jean-Claude REGIS ok merci pour la rapidité de la réponse  cordialement    vu ça fonctionne me reste q...
Balian Merci pour l'indicateur J'ai l'impression qu'un truc cloche. Les triggers sont systémtiqeme...
Balian Tout va bien. J'avais mal lu
Nicolas
10 years ago
XBKZ Bonjour, Je trouve votre indicateur très intéressant. J'ai essayé de créer un autre indicat...
Nicolas Pour visualiser une variable, il suffit de l'ajouter dans la fonction RETURN et la plateform...
cruxtrader Hello Nicolas, Is this script Ninjatrader Compatible ?
Yantra "i believe this indicator could help any trend followers in trading decision. " I'm wonderin...
Nicolas
10 years ago

Top