Page 174 of 351

Re: Moving Average indicators for MT4

Posted: Wed Jun 30, 2021 2:28 am
by mrtools
medotrader wrote: Tue Jun 29, 2021 9:49 am hello mrtools
thank you for all your great work.
could kauffman ama signal (mtf) made into histogram.
much appreciated
thanx in advance
Try.

Re: Moving Average indicators for MT4

Posted: Wed Jun 30, 2021 3:02 am
by mrtools
太虚一毫 wrote: Tue Jun 29, 2021 8:39 pm Could anyone please provide me with information about the "ma_ie2, // IE/2" average?
Found this but still doing more research.

Code: Select all

// MA_Method=17: IE/2 - Combination of LSMA and ILRS
double IE2(double price[],int per,int bar)

{

double ie = 0.5*(ILRS(price,per,bar) + LSMA(price,per,bar));

return(ie);

}

Re: Moving Average indicators for MT4

Posted: Thu Jul 01, 2021 7:57 am
by mrtools
whiplashtm wrote: Thu Jul 01, 2021 12:54 am Hi, this is some kind of Ehlers Fisher Transform indicator - but maybe not quite the same. I was hoping if it's possible to add an OMA (pretty sure it's "one more average" signal line to this indicator? Preferable with the option to toggle on/off the adaptive (or no adaptive at all).

Appreciate all the good work!



download/file.php?mode=view&id=3392669 download/file.php?mode=view&id=3392670

No , it's more of a moving average type indicator, anyway added Mladen's one more average as a second signal line.

Re: Moving Average indicators for MT4

Posted: Thu Jul 01, 2021 9:45 am
by whiplashtm
mrtools wrote: Thu Jul 01, 2021 7:57 am No , it's more of a moving average type indicator, anyway added Mladen's one more average as a second signal line.
Yeah, I figured as much when I tweaked the settings and compared it with fisher transform... But thank you so much! You're a beast!

I've also been looking for this indicator: Oma Channel Candles (with regular candles - not hma)
But the only version I could find on the mql5 forums comes with an error code: "This indicator has been renamed" (ex4. file). You don't by any chance have a copy laying around?

Much appreciated!

Re: Moving Average indicators for MT4

Posted: Thu Jul 01, 2021 7:09 pm
by remcous
mrtools wrote: Sun Jun 27, 2021 12:54 pm Made this version.
Hi mrtools !

Thank for this powerfull tool... A version with alerts exist ?

Thank you :-)

Re: Moving Average indicators for MT4

Posted: Fri Jul 02, 2021 12:11 am
by mrtools
remcous wrote: Thu Jul 01, 2021 7:09 pm Hi mrtools !

Thank for this powerfull tool... A version with alerts exist ?

Thank you :-)
Added alerts.

Re: Moving Average indicators for MT4

Posted: Fri Jul 02, 2021 3:08 am
by remcous
mrtools wrote: Fri Jul 02, 2021 12:11 am Added alerts.
Oh thank you very much ! :clap:

Re: Moving Average indicators for MT4

Posted: Fri Jul 02, 2021 7:12 am
by kvak
whiplashtm wrote: Thu Jul 01, 2021 9:45 am Yeah, I figured as much when I tweaked the settings and compared it with fisher transform... But thank you so much! You're a beast!

I've also been looking for this indicator: Oma Channel Candles (with regular candles - not hma)
But the only version I could find on the mql5 forums comes with an error code: "This indicator has been renamed" (ex4. file). You don't by any chance have a copy laying around?

Much appreciated!
Hi.
Its not hma candles. In this picture is oma channel aplicated in HA offline chart...When you add in normal chart its look like this.
And corrected name is.....

Re: Moving Average indicators for MT4

Posted: Fri Jul 02, 2021 1:43 pm
by alisawilson007
A simple yet powerful indicator for finding the average prices of trades over a long period. Started using this moving average indicator for my trading and found it very interesting and helpful at the same time.

Re: Moving Average indicators for MT4

Posted: Sat Jul 03, 2021 4:51 pm
by josi
mrtools wrote: Thu Jul 01, 2021 7:57 am No , it's more of a moving average type indicator, anyway added Mladen's one more average as a second signal line.
Dear MrTools,
I changed inputs just a little bit.
If you compare it to TDI than you will see that JJN promise is very similar, only smoother...
If you take look at my SlateGray-line (i. e. the OMA): if this line would have a change-colour-on-slope-change funtion - it could - almost? - give as good signals and an overall idea of direction of the market as your Jurik Volty Bands (which for me - just for now - has become the standard benchmark).
Maybe you could think about upgrading it - a little more..?