Page 188 of 351

Re: ALMA MTF Strategy

Posted: Mon Aug 30, 2021 12:34 am
by KAESER444
erynade wrote: Sun Aug 29, 2021 7:10 pm Hello Master Mrtools,

this can be 1st info to next position.

Thankyou very much.

Profit Regard
Erynade
are you able to share the template if you dont mind. i would appreciate it

Re: Moving Average indicators for MT4

Posted: Tue Aug 31, 2021 2:01 am
by vbigdeli
Friends, have you ever seen an indicator based on a movings that increases or decreases its angle, its color intensity becomes more or less?

I have a moving angle indicator but it's Oscillator

Re: Moving Average indicators for MT4

Posted: Tue Aug 31, 2021 9:51 am
by traderduke
tyuiu

Re: Moving Average indicators for MT4

Posted: Tue Aug 31, 2021 1:06 pm
by ferleon89
mrtools wrote: Thu Aug 26, 2021 6:53 am Think it's close to his.
Dear Mrtool

ema variation ribbon.ex4

Please could you modify this indicator so that the GREEN lines are not continuous.? I would like it to be cut like the RED lines.

That the GREEN lines will be cut when the RED lines appear

Thanks in Advance.
Attachments

Re: Low Frequency Filter Moving Average (LFFMA)

Posted: Sun Sep 05, 2021 7:29 am
by ZZTop
ionone wrote: Mon Jun 28, 2021 4:50 pm Here is another indicator converted from ProRealTime
Low Frequency Filter Moving Average (LFFMA)
https://www.prorealcode.com/prorealtime ... age-lffma/
instead of putting it in a separate window, I put it on chart, because on chart displays allow more possibilities

Jeff
Thanks, it is different.

Re: Low Frequency Filter Moving Average (LFFMA)

Posted: Sun Sep 05, 2021 10:29 am
by Woodyz
ZZTop wrote: Sun Sep 05, 2021 7:29 am Thanks, it is different.
I tried compiling the code.
There is an error on the last line and I have no idea how tio fix it

Re: Low Frequency Filter Moving Average (LFFMA)

Posted: Sun Sep 05, 2021 4:22 pm
by ionone
Woodyz wrote: Sun Sep 05, 2021 10:29 am I tried compiling the code.
There is an error on the last line and I have no idea how tio fix it
what's the error please

Re: Low Frequency Filter Moving Average (LFFMA)

Posted: Sun Sep 05, 2021 9:03 pm
by Woodyz
ionone wrote: Sun Sep 05, 2021 4:22 pm what's the error please
After compiling there were 7 errors

//Filter on amplitude based on ATR and filter
//on wave period based on the tau factor.
//This filter should disregard all the waves
//with a period of less than tau

once v=0
once b=1
once input=medianprice
if barindex>15 then
a=averagetruerange[periodo](close)
tau=periodofiltro/3.5
if (abs(MedianPrice-v[1]))<=(a) then
input=input[1]
b=b[1]+1
else
input=MedianPrice-v[1]
b=1
endif
v=v[1]+(Input*(1-exp(-b/tau)))
endif
if v>=v[1] then
r=0
g=0
b=255
else
r=255
g=0
b=0
endif

return v coloured (r,g,b), close as "close"

Re: Moving Average indicators for MT4

Posted: Thu Sep 09, 2021 8:57 am
by kvak
Little enhanced version of this indicator.
It have MTF with autohigher timeframe, full price options, alerts , possible smoothing and menu where you can choose between DSL levels or or normal slope change...and button :)

Re: Moving Average indicators for MT4

Posted: Thu Sep 09, 2021 8:58 am
by kvak
And Fast EMA

It have MTF with autohigher timeframe, full price options, alerts , possible smoothing and menu where you can choose between DSL levels or or normal slope change...and button :)