PureBytes Links
Trading Reference Links
|
Hi All
I come across a problem after I transfered a formula from Ver6.52 to
Ver 7.2 (also it does not work on Ver 8.0):
The double bottom formula works great on ver 6.52 in that in either
return a 0 or 1. However,
when I used the same formula in Ver 7.2 (or Ver 8.0), most of the
stocks return a "N/A" and some have 0 or 1 as a return value, which
is casuing a lot of problems when I try to use that fromula as one of
the criteria as a filter.
I enclosed the Double Bottoms formula below.
I would be grateful if someone can help me on this.
Thanks very much in advance
Trade Well
Barry
Double Bottoms
PK:=Zig(C,10,%)<Ref(Zig(C,10,%),-1) AND Ref(Zig(C,10,%),-1)>Ref(Zig
(C,10,%),-2);
TR:=Zig(C,10,%)>Ref(Zig(C,10,%),-1) AND Ref(Zig(C,10,%),-1)<Ref(Zig
(C,10,%),-2);
TR1:=TroughBars(1,C,10);
TR2:=TroughBars(2,C,10);
(ValueWhen(1,TR,Ref(C,-1))/ValueWhen(2,TR,Ref(C,-1))>.96 AND ValueWhen
(1,TR,Ref(C,-1)) / ValueWhen(2,TR,Ref(C,-1))<1.04) AND TR2-TR1>=10
AND Cross(C,ValueWhen(1,PK,Ref(C,-1)))
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/
|