Page 378 of 389

Re: Moving Average indicators for MT4

Posted: Mon Mar 17, 2025 4:22 pm
by Wobstix
Good day.
and what a wonderful indicator to start the week with.
Thank you so much kvak.
Is it possible to do an MT5 version of this ?
Huge respect.
Tank you again.

Re: Moving Average indicators for MT4

Posted: Tue Mar 18, 2025 9:16 am
by ROI
kvak wrote: Sun Mar 16, 2025 10:02 am I found bug in my code, I am forget update prices function and some averages have problems with it. Redownload new fixed version from post above.
Also, Timeframe to use...does not do (change) anything.

Re: Moving Average indicators for MT4

Posted: Wed Mar 19, 2025 2:38 am
by kvak
ROI wrote: Tue Mar 18, 2025 9:16 am Also, Timeframe to use...does not do (change) anything.
Hello,
sorry for the misleading menu and as my original post said, this indicator plot MA of current timeframe and choosable higher timeframe.
Timeframe to use is inactive menu and I am forget hide it.

Re: Moving Average indicators for MT4

Posted: Wed Mar 19, 2025 2:40 am
by kvak
Wobstix wrote: Mon Mar 17, 2025 4:22 pm Good day.
and what a wonderful indicator to start the week with.
Thank you so much kvak.
Is it possible to do an MT5 version of this ?
Huge respect.
Tank you again.
Hello, sorry for now it is out of my skill in MT5 coding.

Re: Moving Average indicators for MT4

Posted: Wed Mar 19, 2025 9:05 am
by mrtools
Relative Slope (RELS) Indicator with All Averages

This is the relative slope indicator:

Authored by Dimitris Tsokakis, the relative slope uses an Exponential Moving Average of the typical price (HLC/3), usually set to a 20-period EMA, though this can be adjusted. For each calculated value, it subtracts the previous value and divides the result by the total of the two values.
Finally, these outcomes are smoothed again using a 3-period EMA.

A common system for trading the RELS would be to buy when it has turned "positive":

RELS > 0 AND RELS.1 <= 0

and sell when it turned negative:

RELS < 0 AND RELS.1 >= 0


Formula

X = ema((HI+LO+CL)/3, P); Y = 2 * (X - X.1) / (X + X.1); RELS = 100 * ema(Y, 3); where: P=period parameter (user supplied, default=20) X=working variable Y=working variable HI=high LO=Low CL=Close EMA=exponential moving average function RELS=relative slope indicator

Left ema and typical price by default but added more averages and prices to choose. Have noticed for every average you will possibly need a different period to get good results.


Re: Moving Average indicators for MT4

Posted: Thu Mar 20, 2025 8:12 am
by mrtools
Guppy MMA (Multiple Moving Average) Oscillator

This is an updated version of Mladen's guppy mma oscillator.

Attached is a pdf explaining the oscillator (see page 17 or 18 of the pdf).

PS: There is also another fairly modern version over here and an MT5 version has now been made, too: Guppy MMA for MT5.


Re: Moving Average indicators for MT4

Posted: Sun Mar 23, 2025 12:44 pm
by Sutatong
mrtools wrote: Thu Mar 20, 2025 8:12 am This is an updated version of Mladen's guppy mma oscillator.


PS: Just noticed there is a fairly new version here
Is it available in mt5?

Re: Moving Average indicators for MT4

Posted: Mon Mar 24, 2025 4:53 am
by mrtools
Sutatong wrote: Sun Mar 23, 2025 12:44 pm Is it available in mt5?
Hello, try here

Re: Moving Average indicators for MT4

Posted: Tue Mar 25, 2025 6:39 pm
by EVGENIY86
ROI wrote: Tue Dec 24, 2024 8:07 pm Soo...this was the idea

Näyttökuva 2024-12-24 110513.png
Please share! Indicators and template.

Re: Moving Average indicators for MT4

Posted: Tue Mar 25, 2025 6:46 pm
by ROI
post1295438051.html#p1295438051
Envelopes to that indi...First Indicators Data...actually it must be Previous Indicators Data, I think that first takes data from price.
And LFMA+Osc.mq4 for trend