Registered User Joined: 12/29/2006 Posts: 68
|
How would I go about creating the Hull Moving Average? Here's the formula for Metastock:
MetaStock Formula
period:=Input("period",1,200,20);sqrtperiod:=Sqrt(period);Mov(2*Mov(C,period/2,W) - Mov(C,period,W),LastValue(sqrtperiod),W);
How would this be written as an indicator for Blocks? Thanks much!!
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You may wish to review the following:
Hull Moving Average
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 12/29/2006 Posts: 68
|
Thanks Bruce. That's perfect!
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|