"RMX" based on RSX - page 4

 

Hi Mladen,

There is perhaps a little error on your Smoothed IFT formula (SVE Formula) (I see it when I compare to my Smoothed IFT on PRT),

The formula from the SVE of Sylvain Verwoort is:

invfish:=((Exp(2*ZlEma)-1)/(Exp(2*ZlEma)+1)+1)*50

not

invfish = 50.0*(1+(MathExp(2*zlema)-1)/(MathExp(2*zlema)+1))

His article is HERE

http://technical.traders.com/archive/articlefinal.asp?file=%5CV28%5CC010%5C192VERV.pdf

Or perhaps do you change voluntarily the formula of Sylvain ? And not sur it change a lot of things ...

Have a nice evening and thanks for all your job

Zilliq

mladen:

It does not have an option to turn off the inverse fisher

You have a line of code that goes like this :

inv = 50.0*(1+(MathExp(2*zlema)-1)/(MathExp(2*zlema)+1));

[/PHP]

if you add a boolean option that would be called CalculateIFT (for example) you could turn the IFT on and off by changing the upper line to look like this :

[PHP] if (CalculateIFT)

inv = 50.0*(1+(MathExp(2*zlema)-1)/(MathExp(2*zlema)+1));

else inv = 10.0*zlema+50.0;

PS: you also have to set the Ema period to 1 in order to get "pure" rsx in that case (it would look like this then :
 
zilliq:
Hi Mladen,

There is perhaps a little error on your IFT formula (I see it when I compare to my IFT on PRT),

The formula from the SVE of Sylvain Verwoort is:

invfish:=((Exp(2*ZlEma)-1)/(Exp(2*ZlEma)+1)+1)*50

not

inv[i] = 50.0*(1+(MathExp(2*zlema)-1)/(MathExp(2*zlema)+1))

His article is HERE

http://technical.traders.com/archive/articlefinal.asp?file=%5CV28%5CC010%5C192VERV.pdf

Or perhaps do you change voluntarily the formula of Sylvain

Have a nice evening and thanks for all your job

Zilliq

Zilliq

Those two formulas are mathematically exactly the same (check the "(" and ")" and you will see that)

 

OK I understand !

 
zilliq:
Not exactly in fact,

As you see in the formula of Sylvain on the second part there ara two "1

(a/(b+1))*50

on the one you use it's

50*(1+a)/b)

I compare 2 graphs with the 2 formulae (IFT not smooth by rwma etc..)

And as you see, it change the valours of the indicators, but not a lot of the slope of the indicators.

So...it's just a mathematical delirium of the mad man I am

Thanks a lot and have a nice evening

Zilliq

Zilliq

I do not know what are you doing with the code, but the formula is not (a/(b+1))*50 but (a/b+1)*50 and "my" formula is not 50*(1+a)/b) but 50*(1+a/b) - which means that if you honor the "(" and ")" exactly they are mathematicaly equivalent

________________

PS: where a = (MathExp(2*zlema)-1)and b = (MathExp(2*zlema)+1)

 

Yes I see, and correct my post too late...

In the Sylvain formula it's

(a/b+1)

And you

(1+a/b)

The divisor as the priority and I was trap by the "(" that I'm looking for (In France we use a lottttt of "(" for that)

Sorry for that and thanks a lot, good mathematical exercice for my old brain

Have a nice evening, and thanks for your nice answers, as always

Zilliq

 

Updated Inverse fisher transform of rmi rsx smoothed : ift_rmi_rsx_smoothed_nmc.mq4

Original was posted here : https://www.mql5.com/en/forum/183640

 

Updated histogram version of Inverse fisher transform of rmi rsx smoothed : ift_rmi_rsx_smoothed_histo_nmc.mq4

Original was posted here : https://www.mql5.com/en/forum/183640/page2

Updated histogram version of rmi rsx smoothed : rmi_rsx_smoothed_-_histo_nmc.mq4

Original was posted here : https://www.mql5.com/en/forum/183640

 

Updated Inverse fisher transform of rmi calculated the rsx way : ift_rmi_rsx_smoothed_reg_histo_nmc.mq4

Original was posted here : https://www.mql5.com/en/forum/183640/page2

 

Updated Rmi rsx smoothed made as regular histogram : rmi_rsx_smoothed_-_reg_histo_nmc.mq4

Original was posted here : https://www.mql5.com/en/forum/183640/page2

 
bayuveneo:
I'm sorry Sir Mladen..

I mean, histogram version look similar as rsx histo indicator in the picture..

Could you make it Sir?

Thankyou..

Bayuveneo, made the regular histo versions.

Updated version of first one posted here : https://www.mql5.com/en/forum/183640

Updated version of the second one posted here : https://www.mql5.com/en/forum/183640

Reason: