Page 1 of 1

Hurst Cycle

Posted: Sat Feb 25, 2017 10:49 am
by RobbieRoo
Hi, does anyone have the Hurst Cycle indicator for EdgeRater?

Re: Hurst Cycle

Posted: Mon Feb 27, 2017 7:07 am
by henry1224
I have an indicator called Hurst Channels


Under the Parameters tab

N1 Double 10 space 1 space 1000
N2 Double 80 space 1 space 1000
M1 Double 1 space .01 space 10
M2 Double 3 space .01 space 10


Under the script tab

CY1:=(N1/2);
CY2:=(N2/2);
T1: Ref(MA( C ,CY1 ),CY1/2)+ M1*ATR(CY1 ),ColorRed;
B1: Ref(MA( C ,CY1 ),CY1/2)- M1*ATR(CY1 ),ColorRed;
T2: Ref(MA( C ,CY2 ),CY2/2)+ M2*ATR(CY2 ),ColorBlue;
B2: Ref(MA( C ,CY2 ),CY2/2)- M2*ATR(CY2 ),ColorBlue;

Re: Hurst Cycle

Posted: Tue Feb 28, 2017 12:09 pm
by RobbieRoo
Thanks henry1224, appreciate your help.