PureBytes Links
Trading Reference Links
|
Roy,
if CY1 =10
Wouldn't "T1:=Ref(Mov(CLOSE,CY1,S),CY1/2)+M1*ATR(CY1);" include a postive
reference of ten?
If so, I would think that this code could be wrong.
Cheers,
Cameron
From: "Roy Larsen" <rlarsen@xxxxxxxxxxxxxx>
Reply-To: equismetastock@xxxxxxxxxxxxxxx
To: <equismetastock@xxxxxxxxxxxxxxx>
Subject: Re: [EquisMetaStock Group] Hurst Channel
Date: Wed, 14 Dec 2005 09:03:54 +1300
Hi Wallace
I found this using Google.
http://www.stoploss.ch/Metastock_Hurst_Channels.htm
And the code is..
{Hurst Channels}
CY1:=Input("Short Cycle length",1,1000,10)/2;
CY2:=Input("Medium Cycle length",1,1000,80)/2;
M1:=Input("Short Cycle Multiplier",.01,10,1);
M2:=Input("Medium Cycle Multiplier",.01,10,3);
T1:=Ref(Mov(CLOSE,CY1,S),CY1/2)+M1*ATR(CY1);
B1:=Ref(Mov(CLOSE,CY1,S),CY1/2)-M1*ATR(CY1);
T2:=Ref(Mov(CLOSE,CY2,S),CY2/2)+M2*ATR(CY2);
B2:=Ref(Mov(CLOSE,CY2,S),CY2/2)- M2*ATR(CY2);
T1;B1;T2;B2;
Regards
Roy
www.metastocktips.co.nz
----- Original Message -----
From: murusprimus
To: equismetastock@xxxxxxxxxxxxxxx
Sent: Wednesday, December 14, 2005 4:07 AM
Subject: [EquisMetaStock Group] Hurst Channel
Hi, does anyone have a Hurst Channel formula/s they would post please.
TIA. Wallace
--------------------------------------------------------------------------------
YAHOO! GROUPS LINKS
a.. Visit your group "equismetastock" on the web.
b.. To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
--------------------------------------------------------------------------------
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|