Page 47 of 75

Re: Ehlers Indicators for MT4

Posted: Tue Mar 29, 2022 8:31 am
by kvak
太虚一毫 wrote: Tue Mar 29, 2022 2:43 am Looking forward to adding ADXVMA to ift_wpr_mtf_shadow_1_2. Infinite merit! :thumbup:
Added 20 averages pack with ADXvma....so try it. In picture compared with original indicator with same parameters...

Re: Ehlers Indicators for MT4

Posted: Tue Mar 29, 2022 9:18 am
by kvak
IFT of RSI with 6 types of rsi, full price options and 20 averages method for smoothing rsi and price.

Re: Ehlers Indicators for MT4

Posted: Wed Mar 30, 2022 2:22 pm
by 太虚一毫
kvak wrote: Tue Mar 29, 2022 9:18 am IFT of RSI with 6 types of rsi, full price options and 20 averages method for smoothing rsi and price.
Image

Image


This indicator is very good!

Another: the teacher in DSL SZO BT 2.1, about the color change on method, very interesting.
If color-changing methods such as change color on opposite levels cross, change color on OBOS levels cross, etc. are transplanted into indicators such as RSI, CCI, WPR, stochastic, ift, ehlers optimal tracking filter, etc., what interesting effects will appear?

Re: Ehlers Indicators for MT4

Posted: Thu Mar 31, 2022 10:30 am
by kvak
太虚一毫 wrote: Wed Mar 30, 2022 2:22 pm This indicator is very good!

Another: the teacher in DSL SZO BT 2.1, about the color change on method, very interesting.
If color-changing methods such as change color on opposite levels cross, change color on OBOS levels cross, etc. are transplanted into indicators such as RSI, CCI, WPR, stochastic, ift, ehlers optimal tracking filter, etc., what interesting effects will appear?
First is ift of rsi with updates methods....

Re: Ehlers Indicators for MT4

Posted: Fri Apr 01, 2022 10:02 am
by kvak
IFT of WPR with levels and signal.

Re: Ehlers Indicators for MT4

Posted: Fri Apr 01, 2022 10:19 pm
by moey_dw
kvak wrote: Fri Apr 01, 2022 10:02 am IFT of WPR with levels and signal.
INCREDIBLE............ love it kvak man its a real nice one bro :In Love: :In Love: :In Love:

Re: Ehlers Indicators for MT4

Posted: Sun Apr 10, 2022 11:14 pm
by ionone
converted from TradingView

Code: Select all

//@version=2
// https://www.tradingview.com/u/shayankm/
study("MESA Phase [SHK]")

DomCycle = input(15)
offsetNum = input(-2,"Offset")
RealPart = 0
ImagPart = 0

for J = 0 to DomCycle - 1
	Weight = (close[J] + close[J] + high[J] + low[J]) * 10000
	if DomCycle != 0
		RealPart := RealPart + cos(90 * J / DomCycle) * Weight * 2
		ImagPart := ((ImagPart + sin(90 * J / DomCycle) * Weight) + (ImagPart + sin(180 * J / DomCycle) * Weight)) / 2

Phase = ((atan(ImagPart / RealPart)) - 0.685) * 100

plot(0,color=gray)
plot(Phase,color=purple,linewidth=3,offset=offsetNum)

Re: Ehlers Indicators for MT4

Posted: Tue Apr 26, 2022 2:18 am
by 太虚一毫
mrtools wrote: Fri Mar 25, 2022 4:43 am Button added.
Image


Looking forward to mrtools teacher adding ADXVMA to Step ehlers optimal tracking filter histo (mtf + alerts). Infinite merit! :thumbup:

Re: Ehlers Indicators for MT4

Posted: Tue Apr 26, 2022 2:44 am
by mrtools
太虚一毫 wrote: Tue Apr 26, 2022 2:18 am Looking forward to mrtools teacher adding ADXVMA to Step ehlers optimal tracking filter histo (mtf + alerts). Infinite merit! :thumbup:
For some reason can't find that version in my files anymore guess I coded it before my last computer crash.

Re: Ehlers Indicators for MT4

Posted: Tue Apr 26, 2022 10:56 am
by mrtools
太虚一毫 wrote: Tue Apr 26, 2022 2:18 am Looking forward to mrtools teacher adding ADXVMA to Step ehlers optimal tracking filter histo (mtf + alerts). Infinite merit! :thumbup:
Thanks to Kvak he did probably 98% of this one, I just added a few minor things, anyway, check if this version is close to the one you posted.

ps) it has adxvma as a ma method