Conversion of Jurik Filter from mq4

Forums ProRealTime English forum ProBuilder support Conversion of Jurik Filter from mq4

Tagged: ,

Viewing 12 posts - 1 through 12 (of 12 total)
  • #88002

    Hi Nicolas,

    Found this forum that is dedicated to Jurik tools https://www.forexfactory.com/showthread.php?t=696822 , it would be great if you could add to our arsenal those tools. For a start here the Jurik Filter

    rgds

    #88051

    Noticed that there is a newer version that solved some bug

     

    #88081

    These 2 versions of the Jurik moving average could help:

    You can adjust the “Period”, “Pow” and “R” values directly into the code.

    #88085

    Should line 35 not have one more * Beta?

    Perhaps also using a loop would be better way to calculate alpha?

    #88092

    Should line 35 not have one more * Beta?

    I think you are right, codes taken from this indi: Average Filter Regression

    Perhaps also using a loop would be better way to calculate alpha?

    A more classy way for sure, but not sure about performance.

    #88096

    A more classy way for sure, but not sure about performance.

    Yes loops are a much neater solution but they can make things a bit slow and I guess if the Pow only needs to be set to something between 1 and 10 then repetitive typing is the way to go.

    Maybe when I have more time I will do a comparison speed test!

    #88345

    Thanks Vonasi, Nicolas

    However I think that the .mq4 filter is not simply the Jurik moving average that you posted, the plot does not have the strai9ght flat sections showed in the chart.

    Am I missing something?

     

    rgds

    #88374

    The flat section you see is because this indicator is multiple timeframe and plot the superior timeframes values of that moving average.

    ProBuilder is not MTF compatible, but the code I gave you above is similar to the MT4 version on the same timeframe.

    #88379

    Thanks Nicolas, clear.

    #117496

    Hi, Thank you Nicolas for this code.

    If you want use a calculation of power inside PRT code it is very simply and not necessary to use condition “If” heavy and longer.
    So you can remplace ligne 16 to 36 by just one line: So no limit of power and code very light.

    falpha = exp ( Pow * log(fbeta) )

    Explanation:

    A (power x) = exponential (x *natural logarithm (A))   [natural logarithm = “logarithme népérien” in French)

    It is only mathematical property, I have nothing invented. (LOL)

    #117497

    Thank you @Wolf. We are used to use this Math Pow version also in some other codes! 🙂

    A new instruction for POW is in the pipe and should be added very soon in version 11.

    #151111

    I get a syntax error the following variable is undefined series

Viewing 12 posts - 1 through 12 (of 12 total)

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