Moving Average - page 139

 

ST_MA band

1 bar different with others TMA

Files:
st_ma_band.png  42 kb
 

Dear Mladen,

I know you are quite busy with the new forum set up.I have just noticed that Recursive Moving Trend Average from dennis meyers has not been coded in mql4. http://www.meyersanalytics.com/publications2/jyrecursed.pdf This is the Meastock formula:

Recursive Moving Trend Average MetaStock Indicator Taken from an article "The Yen Recused" in the December 1998 issue of TASC, written by Dennis Meyers. He describes the Recursive MA in mathematical terms as "recursive polynomial fit, a technique that uses a small number of past values of the estimated price and today's price to predict tomorrows price." Lb:=Input("Look-Back Period?",3,100,21); Alpha:=2/(LB+1); Bot:=(1-Alpha)*(If(Cum(1)<Lb,C,PREV))+C; RMTA:=(1-Alpha)*(If(Cum(1)<Lb,C,PREV))+ (Alpha*(C+Bot-Ref(Bot,-1))); RMTA;

http://www.paritech.com.au/education/tech_anaylsis/custom_indicators4.html http://www.meta-formula.com/Metastock-Formulas-R.html#%7BRecursive%20Moving%20Trend%20Average%7D

 
nevar:
Dear Mladen,

I know you are quite busy with the new forum set up.I have just noticed that Recursive Moving Trend Average from dennis meyers has not been coded in mql4. http://www.meyersanalytics.com/publications2/jyrecursed.pdf This is the Meastock formula:

Recursive Moving Trend Average MetaStock Indicator Taken from an article "The Yen Recused" in the December 1998 issue of TASC, written by Dennis Meyers. He describes the Recursive MA in mathematical terms as "recursive polynomial fit, a technique that uses a small number of past values of the estimated price and today's price to predict tomorrows price." Lb:=Input("Look-Back Period?",3,100,21); Alpha:=2/(LB+1); Bot:=(1-Alpha)*(If(Cum(1)<Lb,C,PREV))+C; RMTA:=(1-Alpha)*(If(Cum(1)<Lb,C,PREV))+ (Alpha*(C+Bot-Ref(Bot,-1))); RMTA;

http://www.paritech.com.au/education/tech_anaylsis/custom_indicators4.html http://www.meta-formula.com/Metastock-Formulas-R.html#%7BRecursive%20Moving%20Trend%20Average%7D

Can it be made for metatrader?

 

no loss at this system

moving average

Files:
15_dk..png  31 kb
 
on my own:
Can it be made for metatrader?

It should be

Checking what does the Cum(1) mean in metastock

 
mladen:

It should be

Checking what does the Cum(1) mean in metastock

Maybe this can help : http://www.metastock.ca/download/MetaStock-Formula-Primer.pdf

 

Any luck with that average?

 

OK guys, now I think I have all the information needed

 
mladen:

OK guys, now I think I have all the information needed

Glad that I could help

Reason: