logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
bobgil  
#1 Posted : Wednesday, January 30, 2008 8:51:04 PM(UTC)
bobgil

Rank: Newbie

Groups: Registered, Registered Users, Unverified Users
Joined: 1/19/2008(UTC)
Posts: 3

My question: How many days should I usually wait before a trough or peak is confirmed and unlikely to chnage? For example, if I use a 5% trough as a buy and wait a week, am I probably safe? (I know not to buy funds when markets are extremely volatile, like now.)

I'm trying to apply the zigzag or trough to mutual fund purchases. Probably would use 5, 7 or 10% zig. These generally must be held for at least 30 days, so I'm not concerned about using it as a quick trading signal and don't mind some lag to be sure. If the 'to be sure' period is over 7-10 days, it's problably not worth it.

johnl  
#2 Posted : Wednesday, February 6, 2008 8:48:04 PM(UTC)
johnl

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/7/2005(UTC)
Posts: 602

The most current peak or trough is pretty worthless. The question I would ask is not how many days
should I wait but what's the probability of being right. ZigZag uses hindsight so any test will give genius
results that no one can duplicate so watch out.

amory  
#3 Posted : Saturday, February 9, 2008 5:36:56 PM(UTC)
amory

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 4/18/2007(UTC)
Posts: 99
Location: sydney australia

I use zig-zag with a reversal 3 & fully agree that for the short term, its only use is in hindsight.

but I do find that it works very well in combination with Elliott-wave, because it confirms within a few straight lines what elliott sometimes tries to tell you in a convoluted way.

for instance looking at a chart of BHP (or just about anything else) the zig-zag follows the elliott nicely. but when it comes to predicting whereto from here, your guess is as good as mine. Elliott can't tell you & neither can zig-zag.

bushjh19  
#4 Posted : Thursday, February 21, 2008 10:21:07 AM(UTC)
bushjh19

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 12/21/2007(UTC)
Posts: 3

Try this( Dennis Peterson Swing prediction) pctg:=Input("ZigZag Percentage",3,20,8); cond1:=Zig(C,pctg,%) < Ref(Zig(C,pctg,%),-1); cond2:=Zig(C,pctg,%) > Ref(Zig(C,pctg,%),-1); diff1:=BarsSince(cond1){no of days since a down swing}; diff2:=-BarsSince(cond2);{no of days since an up swing} sumdiff1:=0;sumdiff2:=0; sumdiff1:=If(diff1>0,1,Ref(diff1,-1)); sumdiff2:=If(diff2<0,1,Ref(diff2,-1)); sumdiff1;sumdiff2
moneypick  
#5 Posted : Sunday, March 2, 2008 7:06:25 AM(UTC)
moneypick

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 32

Hi Bushjh19,

Perhaps your formula is incomplete. Please check the formual and repost.

Regards,

(moneypick)

bushjh19  
#6 Posted : Tuesday, March 11, 2008 9:36:49 AM(UTC)
bushjh19

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 12/21/2007(UTC)
Posts: 3

pctg:=Input("ZigZag Percentage",3,20,8); cond1:=Zig(C,pctg,%) < Ref(Zig(C,pctg,%),-1); cond2:=Zig(C,pctg,%) > Ref(Zig(C,pctg,%),-1); diff1:=BarsSince(cond1){no of days since a down swing}; diff2:=-BarsSince(cond2);{no of days since an up swing} sumdiff1:=0;sumdiff2:=0; sumdiff1:=If(diff1>0,1,Ref(diff1,-1)); sumdiff2:=If(diff2<0,1,Ref(diff2,-1)); sumdiff1;sumdiff2
henry1224  
#7 Posted : Tuesday, March 11, 2008 5:30:37 PM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)

This line contains the error

sumdiff2:=If(diff2sumdiff1;sumdiff2

uasish  
#8 Posted : Wednesday, April 9, 2008 10:57:44 AM(UTC)
uasish

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 8/13/2005(UTC)
Posts: 170

Thanks: 7 times

There is also a semi colon missing in Line 2

bushjh19  
#9 Posted : Saturday, April 12, 2008 4:44:17 PM(UTC)
bushjh19

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 12/21/2007(UTC)
Posts: 3

oztrader  
#10 Posted : Saturday, April 12, 2008 5:14:41 PM(UTC)
oztrader

Rank: Advanced Member

Groups: Registered, Registered Users, Unverified Users
Joined: 7/12/2007(UTC)
Posts: 134
Location: Perth Western Australia

This is the complete code posted by Dennis Peterson in his article titled "Swing Prediction" to which bushjh19 is referring;-

pctg:=Input("ZigZag Percentage",3,20,8);
cond1:=Zig(C,pctg,%) < Ref(Zig(C,pctg,%),-1);
cond2:=Zig(C,pctg,%) > Ref(Zig(C,pctg,%),-1);
diff1:=BarsSince(cond1);{no of days since a down swing}
diff2:=-BarsSince(cond2);{no of days since an up swing}
sumdiff1:=0;sumdiff2:=0;
sumdiff1:=If(diff1>0,1,Ref(diff1,-1));
sumdiff2:=If(diff2<0,1,Ref(diff2,-1));
sumdiff1;sumdiff2

Users browsing this topic
Guest (Hidden)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.