- Katılım
- 23 Eki 2020
- Mesajlar
- 1,823
Trading with the Arps Hurst Bands
pds:= Input("LR Periods",10,100,55);
a:= Input("Stdev Periods",10,100,30);
s1:=Input("Smoothing Periods",2,50,10);
r:=LinearReg(C,pds);
x:=Mov(r,s1,S);
x1 :=x+1*Stdev(C,a);
x2 :=x+2*Stdev(C,a);
x3 :=x+3*Stdev(C,a);
y1:= x-1*Stdev(C,a);
y2:= x-2*Stdev(C,a);
y3:= x-3*Stdev(C,a);
x;
x1;
x2;
x3;
y1;
y2;
y3;
→→→→→→→→→→→→→→→→→→→diğer versiyon←←←←←←←←←←←←←←←←←←
CY1:= Input("Short Cycle length" ,1 ,1000 ,10 )/2;
CY2:= Input("Medium Cycle length" ,1 ,1000 ,80 )/2;M1:= Input("Short
Cycle Multiplyer" ,.01 ,10 ,1 );
M2:= Input("Medium Cycle Multiplyer" ,.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;
→→→→→→→→→→→→→→→→→→→diğer versiyon←←←←←←←←←←←←←←←←←←
A:= Input("Periods?",1,300,21);
x:=Mov(C,a,S);
x1 :=x+1*Stdev(C,a);
x2 :=x+2*Stdev(C,a);
x3 :=x+3*Stdev(C,a);
y1:= x-1*Stdev(C,a);
y2:= x-2*Stdev(C,a);
y3:= x-3*Stdev(C,a);
kaynak
purebytes
pds:= Input("LR Periods",10,100,55);
a:= Input("Stdev Periods",10,100,30);
s1:=Input("Smoothing Periods",2,50,10);
r:=LinearReg(C,pds);
x:=Mov(r,s1,S);
x1 :=x+1*Stdev(C,a);
x2 :=x+2*Stdev(C,a);
x3 :=x+3*Stdev(C,a);
y1:= x-1*Stdev(C,a);
y2:= x-2*Stdev(C,a);
y3:= x-3*Stdev(C,a);
x;
x1;
x2;
x3;
y1;
y2;
y3;
→→→→→→→→→→→→→→→→→→→diğer versiyon←←←←←←←←←←←←←←←←←←
CY1:= Input("Short Cycle length" ,1 ,1000 ,10 )/2;
CY2:= Input("Medium Cycle length" ,1 ,1000 ,80 )/2;M1:= Input("Short
Cycle Multiplyer" ,.01 ,10 ,1 );
M2:= Input("Medium Cycle Multiplyer" ,.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;
→→→→→→→→→→→→→→→→→→→diğer versiyon←←←←←←←←←←←←←←←←←←
A:= Input("Periods?",1,300,21);
x:=Mov(C,a,S);
x1 :=x+1*Stdev(C,a);
x2 :=x+2*Stdev(C,a);
x3 :=x+3*Stdev(C,a);
y1:= x-1*Stdev(C,a);
y2:= x-2*Stdev(C,a);
y3:= x-3*Stdev(C,a);
kaynak
purebytes
Son düzenleme: