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

Notification

Icon
Error

Options
Go to last post Go to first unread
theghost  
#1 Posted : Sunday, May 8, 2005 4:44:07 PM(UTC)
theghost

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/4/2005(UTC)
Posts: 63
Location: Poole Dorset England

Hello all, I copied the [censored]and pennent formula into my explorer which is as follows, by the way, I got this on the Forum. Column A Name: Price Formula: C Column B Name: Pole Top Formula: zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1);C2 Column C Name: Pole Bot Formula: zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; C3:=Ref(LLV(C,26),-X1);C3 Column D Name: Pole % Formula: zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100;POLE Column E Name: Target % Formula: zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100; TARGET:=1.94* Power(pole ,.724);TARGET Column F Name: Target Price Formula: zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100; TARGET:=1.94* Power(pole ,.724); (1+TARGET/100)*C Filter The filter formula is exactly the same used for the Enter Long Order of the System Test. Run the exploration on the desired securities and display the report. Column A is the prebreakout price, column B is the highest point on the flag pole, column C is the pole base, column D is the % pole height, column E is the target % profit, and column F shows the target price. All prices are on a closing basis. Columns B-F are not essential for running the exploration, but they will help to
:-) What i get are columns stating flagpole height etc price target etc. What I dont understand is the bit Ive copied above that talks about the filter and says"The filter formula is exactly the same used for the Enter Long Order of the System Test. " What does this mean? I'm a bit new to all this.I would like to filter some of these stocks. Also, I read a pole has to be a minimum of 20%. If this is the case, is there anyway of incorporating this as a filter, this would eliminate alot of noise and stocks with little upside movement. Hope this makes sense Many Thanks All TheGhost:-)
SteveB  
#2 Posted : Sunday, May 8, 2005 5:41:09 PM(UTC)
SteveB

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 3/14/2005(UTC)
Posts: 65
Location: Cocoa, Florida

Here is the filter formula you will need: ZZ:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1) AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; {flag duration} X2:=X1+1; SD:=Stdev(C,X2); PERIOD:=22; COEF:=.1; INTRA:=Log(H)-Log(L); VINTRA:=Stdev(INTRA,PERIOD); INTER:=Log(Typical())-Log(Ref(Typical(),-1)); VINTER:=Stdev(INTER,PERIOD); CUTOFF:=COEF*(VINTER+VINTRA)*C; MF:=C-(H+L)/2+Typical()-Ref(Typical(),-1); FVE:=Sum(If(MF>CUTOFF,+V,If(MF<-CUTOFF,-V,0)), PERIOD)/Mov(V,PERIOD,S)/PERIOD*100; denominator:=Ref(V,-X2); noZero:=If(denominator=0,0.00001,denominator); X1<21 AND X1>2 AND {Condition 1} Ref(LinRegSlope(C,13)/Ref(C,-13)*100,-X1)>2.2{Condition 2} AND Ref(LinRegSlope(C,X2)/Ref(C,-X2),-1)*100<.2 AND LinRegSlope(C,X1)/Ref(C,-X1)>-1.2 {Condition 3} AND Ref(LinRegSlope(V,X2)/noZero,-1)*100<-2 {Condition 4} AND Ref(LinRegSlope(SD,X1),-1)<0 {Condition 5} AND Stoch(20,3)>55 AND ADX(10)>30{Condition 6} AND FVE>10 AND Fml("VFI")>-3 {Condition 7} AND C>Ref(C,-1) AND C>O {Condition 8} This has also been corrected from what TASC originally included. Using what you have listed in your post along with this for the filter will give you what you need. Steve B
theghost  
#3 Posted : Sunday, May 8, 2005 6:56:41 PM(UTC)
theghost

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/4/2005(UTC)
Posts: 63
Location: Poole Dorset England

Thanks for the quick reply Steve B. I've done what you said, and copied and pasted it into the filter section of the exploration and clicked ok. But it says "No indicator names in the indicator builder contain this text." The insertion line is flicking on and off in the ("VFI") which is on this line of code AND FVE>10 AND Fml("VFI")>-3 {Condition 7} This is all above me mate, I don't have a clue what's wrongwith it:-( Hope this makes sense By the way, you said this will filter will give me what I need, but hey, does it look complicated! Can you tell me in Laymens terms what the filter is doing as I'm just not 100% sure what it's doing! :-( Looks good though:-) Many Thanks Theghost:-)
SteveB  
#4 Posted : Sunday, May 8, 2005 7:19:44 PM(UTC)
SteveB

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 3/14/2005(UTC)
Posts: 65
Location: Cocoa, Florida

Ghost, This just means that you do not have VFI as one of your Indicators. Just go to Tools/Indicator Builder/New. Type VFI for the name and paste in what's below for the formula: PERIOD:= Input("PERIOD FOR VFI ",5,1300,130); COEF:=.2; VCOEF:=Input("MAX VOLUME CUTOFF",0,50,2.5); INTER:=Log(Typical())-Log(Ref(Typical(),-1)); VINTER:=Stdev(INTER,30); CUTOFF:=COEF*VINTER*C; VAVE:=Ref(Mov(V,PERIOD,S),-1); VMAX:=VAVE*VCOEF; VC:=If(V < VMAX,V,VMAX); MF:=Typical()-Ref(Typical(),-1); VFI:=Sum(If(MF > CUTOFF, +VC, If(MF < -CUTOFF, -VC,0)),PERIOD)/VAVE; Mov(VFI,3,E); If you need FVE, here is the formula: pds:=Input("period for FVE",1,80,22); mf:=C-(H+L)/2+Typical()-Ref(Typical(),-1); fve:=Sum(If(mf>0.3*C/100,+V, If(mf<-0.3*C/100, -V,0)),pds)/Mov(V,pds,S)/pds*100; fve As far as what the formula is actually doing...I don't know a whole more than you do at this point. I recently got the Metastock Formula book which will teach me a lot but I have just barely started with it. I have been using Metastock for a little less than 2 months so I am also new to this. I saw this Flags & Pennants information in Stocks & Commodities magazine but the data was wrong. Henry (from this forum) fixed the column info...you have the corrected info which you have copied from that thread. The formula for the filter was also wrong and I got the corrected info for that from the yahoo metastock groups email list. So...how it works I do not know...yet. But I do know that what is listed here does find Flags and Pennants. Hopefully someone with more knowledge can give us the details. Steve B
theghost  
#5 Posted : Sunday, May 8, 2005 8:24:35 PM(UTC)
theghost

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/4/2005(UTC)
Posts: 63
Location: Poole Dorset England

Cheers Steve B. I will play with this at the weekend Off to bed now In the UK so bedtime for me now :-) You mentioned Metastock Yahoo groups Do you have the link as I've never heard of this, Many Thanks TheGhost
theghost  
#6 Posted : Sunday, May 8, 2005 8:43:12 PM(UTC)
theghost

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/4/2005(UTC)
Posts: 63
Location: Poole Dorset England

Sorry Steve, I just had to try it before I went to bed, but it didnt work. You mentioned this; If you need FVE, here is the formula: pds:=Input("period for FVE",1,80,22); mf:=C-(H+L)/2+Typical()-Ref(Typical(),-1); fve:=Sum(If(mf>0.3*C/100,+V, If(mf<-0.3*C/100, -V,0)),pds)/Mov(V,pds,S)/pds*100; fve What do you mean by this mate? As I don't know if you meant I should copy this anywhere. I copied and pasted the other as you said into the indicator builder, but where does the above go? Not quite sure what is what? Hope this makes sense. As It stands just to clarify I have this in the indicator builder now called FVE PERIOD:= Input("PERIOD FOR VFI ",5,1300,130); COEF:=.2; VCOEF:=Input("MAX VOLUME CUTOFF",0,50,2.5); INTER:=Log(Typical())-Log(Ref(Typical(),-1)); VINTER:=Stdev(INTER,30); CUTOFF:=COEF*VINTER*C; VAVE:=Ref(Mov(V,PERIOD,S),-1); VMAX:=VAVE*VCOEF; VC:=If(V < VMAX,V,VMAX); MF:=Typical()-Ref(Typical(),-1); VFI:=Sum(If(MF > CUTOFF, +VC, If(MF < -CUTOFF, -VC,0)),PERIOD)/VAVE; Mov(VFI,3,E); _____________________________ Then I have this in the FILTER of the exploration ZZ:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1) AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; {flag duration} X2:=X1+1; SD:=Stdev(C,X2); PERIOD:=22; COEF:=.1; INTRA:=Log(H)-Log(L); VINTRA:=Stdev(INTRA,PERIOD); INTER:=Log(Typical())-Log(Ref(Typical(),-1)); VINTER:=Stdev(INTER,PERIOD); CUTOFF:=COEF*(VINTER+VINTRA)*C; MF:=C-(H+L)/2+Typical()-Ref(Typical(),-1); FVE:=Sum(If(MF>CUTOFF,+V,If(MF<-CUTOFF,-V,0)), PERIOD)/Mov(V,PERIOD,S)/PERIOD*100; denominator:=Ref(V,-X2); noZero:=If(denominator=0,0.00001,denominator); X1<21 AND X1>2 AND {Condition 1} Ref(LinRegSlope(C,13)/Ref(C,-13)*100,-X1)>2.2{Condition 2} AND Ref(LinRegSlope(C,X2)/Ref(C,-X2),-1)*100<.2 AND LinRegSlope(C,X1)/Ref(C,-X1)>-1.2 {Condition 3} AND Ref(LinRegSlope(V,X2)/noZero,-1)*100<-2 {Condition 4} AND Ref(LinRegSlope(SD,X1),-1)<0 {Condition 5} AND Stoch(20,3)>55 AND ADX(10)>30{Condition 6} AND FVE>10 AND Fml("VFI")>-3 {Condition 7} AND C>Ref(C,-1) AND C>O {Condition 8} ________________________and finally this in the various columns of the exploration Column A Name: Price Formula: C Column B Name: Pole Top Formula: zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1);C2 Column C Name: Pole Bot Formula: zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; C3:=Ref(LLV(C,26),-X1);C3 Column D Name: Pole % Formula: zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100;POLE Column E Name: Target % Formula: zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100; TARGET:=1.94* Power(pole ,.724);TARGET Column F Name: Target Price Formula: zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100; TARGET:=1.94* Power(pole ,.724); (1+TARGET/100)*C
Not working? HELP!:-)
SteveB  
#7 Posted : Monday, May 9, 2005 5:35:53 PM(UTC)
SteveB

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 3/14/2005(UTC)
Posts: 65
Location: Cocoa, Florida

theghost wrote:
If you need FVE, here is the formula: pds:=Input("period for FVE",1,80,22); mf:=C-(H+L)/2+Typical()-Ref(Typical(),-1); fve:=Sum(If(mf>0.3*C/100,+V, If(mf<-0.3*C/100, -V,0)),pds)/Mov(V,pds,S)/pds*100; fve What do you mean by this mate?
That is just another Indicator that the formula references. You can add it through the Indicator Builder the same as you did with VFI.
theghost wrote:
As It stands just to clarify I have this in the indicator builder now called FVE PERIOD:= Input("PERIOD FOR VFI ",5,1300,130); COEF:=.2; VCOEF:=Input("MAX VOLUME CUTOFF",0,50,2.5); INTER:=Log(Typical())-Log(Ref(Typical(),-1)); VINTER:=Stdev(INTER,30); CUTOFF:=COEF*VINTER*C; VAVE:=Ref(Mov(V,PERIOD,S),-1); VMAX:=VAVE*VCOEF; VC:=If(V < VMAX,V,VMAX); MF:=Typical()-Ref(Typical(),-1); VFI:=Sum(If(MF > CUTOFF, +VC, If(MF < -CUTOFF, -VC,0)),PERIOD)/VAVE; Mov(VFI,3,E);
This should be called VFI. What you now have in the filter and in the columns is the same as what I have. Mine is working so I assume once you rename VFI and add FVE that yours will also work. That is all I did to mine to get it to work. The link for Yahoo groups is http://finance.groups.ya...m/group/equismetastock/. Just click on "Join This Group" at the bottom and reply to the email that they will send you and you're all set. Steve B
theghost  
#8 Posted : Friday, May 13, 2005 5:48:26 PM(UTC)
theghost

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/4/2005(UTC)
Posts: 63
Location: Poole Dorset England

Steve, It's John here. Seems that something is still wrong my end. I've done what you've said or so I thought, but it's still not working. There's something wrong somewhere. Where I've put a few posts up, and you've answered a few times, maybe we're a bit crossed wired here. You say your's is working fine. Can you put a post up with exactly what you have in the explorer, it's columns and it's filter. And what you have in the indicator builder in order for this to work also.(And what they're named. I think were a bit cross wired on the FVI and VFI thing. You said change the name on one of them,I did this, but still no joy. Sorry mate, but it's just so annoying when The damn thing doesn't work and I know it's something that can as yours does! Hope you can help Cheers mate Theghost
SteveB  
#9 Posted : Friday, May 13, 2005 8:49:26 PM(UTC)
SteveB

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 3/14/2005(UTC)
Posts: 65
Location: Cocoa, Florida

theghost wrote:
Can you put a post up with exactly what you have in the explorer, it's columns and it's filter. And what you have in the indicator builder in order for this to work also. And what they're named.
John, Here is what I have: ColA C ColB zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1);C2 ColC zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; C3:=Ref(LLV(C,26),-X1);C3 ColD zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100;POLE ColE zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100; TARGET:=1.94* Power(pole ,.724);TARGET ColF zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100; TARGET:=1.94* Power(pole ,.724); (1+TARGET/100)*C Filter ZZ:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1) AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; {flag duration} X2:=X1+1; SD:=Stdev(C,X2); PERIOD:=22; COEF:=.1; INTRA:=Log(H)-Log(L); VINTRA:=Stdev(INTRA,PERIOD); INTER:=Log(Typical())-Log(Ref(Typical(),-1)); VINTER:=Stdev(INTER,PERIOD); CUTOFF:=COEF*(VINTER+VINTRA)*C; MF:=C-(H+L)/2+Typical()-Ref(Typical(),-1); FVE:=Sum(If(MF>CUTOFF,+V,If(MF<-CUTOFF,-V,0)), PERIOD)/Mov(V,PERIOD,S)/PERIOD*100; denominator:=Ref(V,-X2); noZero:=If(denominator=0,0.00001,denominator); X1<21 AND X1>2 AND {Condition 1} Ref(LinRegSlope(C,13)/Ref(C,-13)*100,-X1)>2.2{Condition 2} AND Ref(LinRegSlope(C,X2)/Ref(C,-X2),-1)*100<.2 AND LinRegSlope(C,X1)/Ref(C,-X1)>-1.2 {Condition 3} AND Ref(LinRegSlope(V,X2)/noZero,-1)*100<-2 {Condition 4} AND Ref(LinRegSlope(SD,X1),-1)<0 {Condition 5} AND Stoch(20,3)>55 AND ADX(10)>30{Condition 6} AND FVE>10 AND Fml("VFI")>-3 {Condition 7} AND C>Ref(C,-1) AND C>O {Condition 8} I'm sure you already know not to include the text in bold as that is just the column labels. I have the columns named: Price, Pole Top, Pole Bot, Pole %, Target %, Tgt Pric (not enough room for the "e"). I also have the following in the Indicators: Name: FVE Formula: pds:=Input("period for FVE",1,80,22); mf:=C-(H+L)/2+Typical()-Ref(Typical(),-1); fve:=Sum(If(mf>0.3*C/100,+V, If(mf<-0.3*C/100, -V,0)),pds)/Mov(V,pds,S)/pds*100; fve Name: VFI Formula: PERIOD:= Input("PERIOD FOR VFI ",5,1300,130); COEF:=.2; VCOEF:=Input("MAX VOLUME CUTOFF",0,50,2.5); INTER:=Log(Typical())-Log(Ref(Typical(),-1)); VINTER:=Stdev(INTER,30); CUTOFF:=COEF*VINTER*C; VAVE:=Ref(Mov(V,PERIOD,S),-1); VMAX:=VAVE*VCOEF; VC:=If(V < VMAX,V,VMAX); MF:=Typical()-Ref(Typical(),-1); VFI:=Sum(If(MF > CUTOFF, +VC, If(MF < -CUTOFF, -VC,0)),PERIOD)/VAVE; Mov(VFI,3,E); That should cover it. Hope it works for you! Steve B
theghost  
#10 Posted : Friday, May 13, 2005 9:53:55 PM(UTC)
theghost

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/4/2005(UTC)
Posts: 63
Location: Poole Dorset England

Hi SteveB, Cheers for the quick reply. Unfortunately it's still not working! I've copied and pasted everything exactly as you've posted and it still isn't working? I do get an error message on some. Here's a big scan with no results. Any Ideas what's wrong? Are you sure that's exactly as, what is in your explorer and indicator builder? Also is there a system test for it? It works without the filter in the explorer, IE showing pole height etc, but not when I have the FVI and FVE. HELP! :-) Security Name Reason for Rejection Location ABBOT GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ASSOCIATED BRITISH PORTS HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ADMIRAL Error in filter: Period value out of valid range in Mov() function. D:\\ukdata\\Stocks\\Mid250 AGA FOODSERVICE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 AGGREGATE INDUSTRIES Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 AGGREKO Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 AEGIS GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ALEA GROUP HOLDINGS (BERMUDA) LTD Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 AMEC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 AMLIN PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ARRIVA Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ARM HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ARLA FOODS UK Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ABERFORTH SMALLER COMPANIES TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ATKINS (W S) PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ALLIANCE TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 AVIS EUROPE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 AWG SERVICES Error in filter: Period out of valid range in LinRegSlope() function. D:\\ukdata\\Stocks\\Mid250 BRADFORD & BINGLEY Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BBA GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BALFOUR BEATTY Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BARRAT DEVS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BENFIELD GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BRITISH ENERGY GP Error in filter: Period value out of valid range in Mov() function. D:\\ukdata\\Stocks\\Mid250 BRAMBLES INDUSTRIES Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BERKLEY GROUP HOLDING UNITS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BANKERS IT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BODY SHOP INTERNATIONAL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BODYCOTE INTERNATIONAL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BPB PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BUSINESS POST GP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BURBERRY GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BRIT INSURANCE HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BRITANNIC GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BRITISH ASSETS TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BRITISH EMPIRE SEC&G Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BURREN ENERGY Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BRITISH VITA PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BOVIS HOMES GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BROWN (N) GRP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BELLWAY Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 BRIXTON Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CAPITAL & REGIONAL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CAPITAL RADIO Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CLOSE BROTHERS GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 COMPUTACENTER Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CANDOVER INVESTMENTS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CATLIN GROUP LD Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CHARTER Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 COOKSON GRP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CALEDONIA INV Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CLS HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CARILLION Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CAIRN ENERGY Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 COBHAM Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CARPETRIGHT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CARPHONE WAREHOUSE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CRODA INTL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CREST NICHOLSON Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CSR Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 COLLINS STEWART TULLET Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 COLT TELECOM GP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CATTLES PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 CITY OF LONDON INVESTMENT TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 COUNTRYWIDE Error in filter: Period value out of valid range in Mov() function. D:\\ukdata\\Stocks\\Mid250 DAIRY CREST GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 DIMENSION DATA HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 DE LA RUE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 DANA PETROLEUM Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 DE VERE GROUP PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 DAVIS SERVICE GR Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 DERWENT VALLEY Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ELECTROCOMPONENT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 EDINBURGH IT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 EGG Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ELECTRA IT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 EMI GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ENODIS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 EUROMONEY INSTITUTIONAL INVESTOR Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 EAST SURREY HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 EDINBURGH US TRACKER TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 EVOLUTION GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 EASYJET Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 F&C ASSET MANAGEMENT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 FIRST CHOICE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 FOREIGN & COLONIAL EUROTRUST PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 FINDEL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 FIDELITY EUROPEA Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 FIRSTGROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 FKI Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 FORTH PORTS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 FOREIGN & COLONIAL IT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 JPMORGAN FLEMING CONTINENTAL EUROPEAN Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 GEEST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 GROUP 4 SECURICOR Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 GKN Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 GREENE KING Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 GO AHEAD GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 GREAT PORTLAND Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 GREGGS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 GRAINGER TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 GWR GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 HEADLAM GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 HALFORDS Error in filter: Period value out of valid range in Mov() function. D:\\ukdata\\Stocks\\Mid250 HHG Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 HALMA Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 HAMMERSON PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 HMV GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 HOMESERVE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 HISCOX Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 HIT ENTERTAINMENT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ICAP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 INTERMEDIATE CAPITAL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 IMI GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 INCHCAPE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 INVESTEC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ISOFT GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 INTERSERVE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 INVENSYS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 INTERTEK TESTING SERVICES Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WETHERSPOON J.D. Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 JP MORGAN FLEMING [censored]IT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 JPMORGAN FLEMING MERCANTILE IT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 JJB SPORTS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 JARDINE LLOYD THOMPSON Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 JP MORGAN FLEMING OVERSEAS IT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 JOHNSTON PRESS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 KELDA GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 KESA ELECTRICAL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 KIDDE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 LAIRD GRP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 LASTMINUTE.COM Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 LONMIN Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 LUMINAR Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 LONDON MERCHANT SECURITIES Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 LAING (J) ORD Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 LOGICACMG Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 LONDON STOCK EXCHANGE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MITCHELLS & BUTLERS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MCALPINE (ALFRED) Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MCCARTHY & STONE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 FTSE MID250 Error in filter: Overflow in Log() function. D:\\ukdata\\Stocks\\Mid250 MERSEY DOCKS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MFI FURNITURE GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MORGAN CRUCIBLE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MEGGITT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MILLENNIUM & COPTHORNE HOTELS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MERRILL LYNCH WORLD MINING TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MONKS IT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MINERVA Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MANCHESTER UTD Error in filter: Period out of valid range in LinRegSlope() function. D:\\ukdata\\Stocks\\Mid250 MARCONI CORPORATION PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MICHAEL PAGE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MERCHANTS TST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MARSHALLS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MISYS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MYTRAVEL GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MATALAN Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MITIE GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MURRAY INCOME TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 MURRAY INTERNATIONAL TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 NATIONAL EXPRESS GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 NORTHERN FOODS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 NORTHGATE INFORMATION SOLUTIONS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 NORTHGATE PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 NOVAR Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 NORTHUMBRIAN WATER GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PARAGON GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PENDRAGON Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PREMIER FOODS Error in filter: Period value out of valid range in Mov() function. D:\\ukdata\\Stocks\\Mid250 PROVIDENT FINANCIAL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PREMIER FARNELL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PHOTO-ME INTL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PHS GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PILKINGTON Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PERPETUAL INCOME & GROWTH Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PILLAR PROPERTIES Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PALADIN RESOURCES Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PREMIER OIL PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PENNON Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 P & O Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PERSIMMON Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PUNCH TAVERNS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PZ CUSSONS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 PZ CUSSONS A (NON.V) Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 QUINTAIN ESTATES AND DEVELOPMENT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 RAC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 RATHBONE BROTHER Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 RIT CAPITAL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 REDROW GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 REGUS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 RANK Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ROTORK Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 RANDGOLD RESOURCES LTD Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 RENISHAW Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SECOND ALLIANCE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SCOTTISH IT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SINGER & FRIEDLA Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 STAGECOACH HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SHAFTESBURY Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SIG PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SIGNET GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ST.IVES Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SKYEPHARMA Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SHANKS GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SLOUGH EST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 STANLEY LEISURE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SMITH (DS) Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SMG Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ST.MODWEN PROPERTIES Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SCOTTISH MORTGAGE & TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SMITH (WH) A Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SOMERFIELD Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SPIRENT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SPIRAX-SARCO ENGINEERING Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SCOTTISH RADIO HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SERCO GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SSL INTERNATIONAL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ST.JAMES'S PLACE Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SVG CAPITAL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SAVILLS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 SPECTRIS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 TEMPLETON EMERGING MARKETS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 T & F INFORMA Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 TULLOW OIL Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 TEMPLE BAR IT Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 TRINITY MIRROR PLC Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 TAYLOR NELSON SOFRES Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 TOMKINS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 TRAVIS PERKINS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 TOPPS TILES Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 TR EUROPEAN GROWTH TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 TR PROPERTY INVESTMENT TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 TAYLOR WOODROW Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 UNITED BUSINESS MEDIA Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ULTRA ELECTRONICS HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 VEDANTA RESOURCES Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 VIRGIN MOBILE HOLDINGS Error in filter: Period value out of valid range in Mov() function. D:\\ukdata\\Stocks\\Mid250 VIRIDIAN Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 VT GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WESTBURY Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WEIR GP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WOOD GROUP (JOHN) Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WHATMAN Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WORKSPACE GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WILSON BOWDEN Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WOOLWORTHS Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WIMPEY (G) Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WOLVERHAMPTON&D Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WITAN INVESTMENT TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 WELLINGTON UNDERWRITING Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 YULE CATTO Normal filter rejection. D:\\ukdata\\Stocks\\Mid250 ALPHA AIRPORT Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ABERDEEN ASIAN SMALLER COMPANIES IT Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AEA TECHNOLOGY Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALBA Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ABERDEEN NEW DAWN INVESTMENT TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALBANY IT Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ABACUS GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ACAL PLC Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ACAMBIS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ABBEYCREST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ADVANCE DEVELOPING MARKETS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ABERDEEN ASSET MANAGEMENT Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALLIANZ DRESDR 2 ENDW POL 2006 Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALLIANZ DRES.2K KSEPT 2009 SHS 1P Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ADVANCE UK TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ANGLO-EASTERN PL Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ASHTENNE HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ASHTEAD GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ANITE GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AIR PARTNER Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ACTIVE CAPITAL TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ARK THERAPEUTICS GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AUTOLOGIC HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALPHAMERIC Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALTERIAN Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALLIANZ DRESDNER INCOME GROWTH Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling APPLIED OPTICAL TECHNOLOGIES Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALUMASC GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ASHLEY (LAURA) HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ASSET MANAGEMENT INVESTMENT CO. Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AMSTRAD Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AMERINDO Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ABERDEEN NEW THAI IT Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AMERICAN OPPORTUNITY TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ANGLO & OVERSEAS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ANGLO PACIFIC GP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling API GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AQUARIUS PLATINUM Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AUSTIN REED GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ARENA LEISURE Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ARMORGROUP Error in filter: Period value out of valid range in Mov() function. D:\\ukdata\\Stocks\\Small Cap & Fledgling ARC INTERNATIONAL Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AURORA INVESTMENT TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ASSOCIATED BRITISH ENGINEERI Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AXIS SHIELD PLC Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ANTISOMA Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ASTON VILLA Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ARTEMIS ALPHA TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AUTONOMY CORPORATION Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AUKETT GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ATRIUM UNDERWRITING Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ABERDEEN DEVELOPMENT CAPITAL Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AVON RUBBER Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AVEVA GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALEXANDRA Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALEXON Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling AXON GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ANGLESEY MINING Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALLIANZ DRESDNER END POL TST 2010 Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling ALIZYME Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BAB[censored] INTERNATIONAL GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BEALE Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRITISH & AMERICAN IT Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BARR (A.G.) Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BERKELEY BERRY BIRCH Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BEN BAILEY Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BROADCASTLE Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRANDON HIRE Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BEDE Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BARING EMERGING EUROPE TRUST (THE) PLC Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BERKELEY TECHNOLOGY Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BEAZLEY GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BAGGERIDGE BRICK Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BTG Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BAILLIE GIFFORD JAPAN TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BAILLIE GIFFORD SHIN NIPPON Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BELHAVEN GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BIRSE GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BIOCOMPATIBLES Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BISICHI MINING Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BLUE PLANET EURO FIN INV TST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling EMBLAZE SYSTEMS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRAEMAR SEASCOPE GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRAIME (TF & AJ) HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRAIME Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BLOOMSBURY PUBLISHING Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BIOTRACE INTERNATIONAL Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BOUSTEAD Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BLUE PLANET FIN & INC IT Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRITISH POLYTHENE Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BESPAK Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRITISH PORTFOLIO TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BPP HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BLUE PLANET WORLDWIDE FINANCIAL Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BIOQUELL Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRAMMER Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRITANNIC SMALLER CO'S TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BROWN & JACKSON Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRITANNIC UK INCOME Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BREWIN DOLPHIN Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BIOSCIENCE INVESTMENT Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BLACKS LEISURE Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BSS GP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BEATTIE (JAMES) Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRUNNER IT Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BATM ADVANCED COMMUNICATIONS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BRISTOL WATER GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling BIG YELLOW GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CAMELLIA Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CARCLO PLC Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling COLLECTIVE ASSETS TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CAMBRIDGE ANTIBODY TECHNOLOGY GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CENTAUR HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHARLES STANLEY Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CLINTON CARDS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CELTIC Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHARACTER GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CARDIFF PROPERTIES Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CALDWELL INVESTMENTS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CELSIS INTERNATIONAL Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling C.H.E GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CLOSE FINSBURY EUROTECH Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CAFFE NERO GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHIEFTAIN GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CAFFYNS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling COMPEL GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CASTINGS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CAPITAL GEARING Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHELVERTON GROWTH TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHAMELEON TRUST Error in filter: Period value out of valid range in Mov() function. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHEMRING Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHLORIDE GRP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHRYSALIS GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHAUCER HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHIME COMMUNICATIONS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CITY MERCHANTS HIGH YIELD TRUST PLC Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CITY OF LONDON GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CLARKSON (H) Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CLINICAL COMPUTING Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHAMBERLIN & HILL Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CML MICROSYSTEMS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling COMINO Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling COMMUNISIS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CITY NORTH GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling COSTAIN GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling COX INSURANCE HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHARTER PAN-EUROPEAN TRUST Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHAPELTHORPE PLC Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CRESTON Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CORIN GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CREIGHTONS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CARRS MILLING INDUSTRIES Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CROPPER (JAMES) Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CORAL PRODUCTS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling COUNTRY AND METROPOLITAN Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling COSALT Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHESNARA Error in filter: Period value out of valid range in Mov() function. D:\\ukdata\\Stocks\\Small Cap & Fledgling CORPORATE SERVICES GROUP (THE) Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHRISTIE GROUP Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CLARKE (T) Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CHARLES TAYLOR CONSULTING Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CARE UK Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CULVER HOLDINGS Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CRANSWICK Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling CITY NATURAL RESOURCES Normal filter rejection. D:\\ukdata\\Stocks\\Small Cap & Fledgling DETICA GROUP Normal filter...
theghost  
#11 Posted : Saturday, May 14, 2005 8:31:39 AM(UTC)
theghost

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/4/2005(UTC)
Posts: 63
Location: Poole Dorset England

Hi Steve, Just to confirm, I have tried several times now, copied and pasted exactly what your last post stated (As I thought maybe the copy and paste might have left something in by mistake as it does happen sometimes) But still, no joy. Try it yourself mate as a new exploration with what you posted, It just isn't working. I think its either a mistake in the VFI or FVE or the filter. As when I copied this before(Just the columns without the filter, it was returning pole heights and target% etc. Can you just check once more mate as there is something definately wrong. Sure I dont need anything else in the indicator builder? I can post exactly what I have for you to look at, but honest mate, it's exactly the same as you last post, I've tried it 4 times now, just to make sure I didnt make a mistake. In saying that, I will post it now, so if it is something I've done different you might see it, but it is the same, Honest Hope you can check once more Help!:-) Here is exactly what I have Column by column and in the Indicator builder In Explorer, Exploration called "Flags & Pennants" ColA C ColB zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1);C2 ColC zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; C3:=Ref(LLV(C,26),-X1);C3 ColD zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100;POLE ColE zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100; TARGET:=1.94* Power(pole ,.724);TARGET Col F zz:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1)AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; c2:=Ref(HHV(C,(2+X1)),-1); c3:=Ref(LLV(C,26),-X1); POLE:=(C2-C3)/C3*100; TARGET:=1.94* Power(pole ,.724); (1+TARGET/100)*C Filter ZZ:=Zig(C,17,%); X:=BarsSince(ZZ < Ref(ZZ,-1) AND Ref(ZZ,-1) > Ref(ZZ,-2)); X1:=LastValue(X)+1; {flag duration} X2:=X1+1; SD:=Stdev(C,X2); PERIOD:=22; COEF:=.1; INTRA:=Log(H)-Log(L); VINTRA:=Stdev(INTRA,PERIOD); INTER:=Log(Typical())-Log(Ref(Typical(),-1)); VINTER:=Stdev(INTER,PERIOD); CUTOFF:=COEF*(VINTER+VINTRA)*C; MF:=C-(H+L)/2+Typical()-Ref(Typical(),-1); FVE:=Sum(If(MF>CUTOFF,+V,If(MF<-CUTOFF,-V,0)), PERIOD)/Mov(V,PERIOD,S)/PERIOD*100; denominator:=Ref(V,-X2); noZero:=If(denominator=0,0.00001,denominator); X1<21 AND X1>2 AND {Condition 1} Ref(LinRegSlope(C,13)/Ref(C,-13)*100,-X1)>2.2{Condition 2} AND Ref(LinRegSlope(C,X2)/Ref(C,-X2),-1)*100<.2 AND LinRegSlope(C,X1)/Ref(C,-X1)>-1.2 {Condition 3} AND Ref(LinRegSlope(V,X2)/noZero,-1)*100<-2 {Condition 4} AND Ref(LinRegSlope(SD,X1),-1)<0 {Condition 5} AND Stoch(20,3)>55 AND ADX(10)>30{Condition 6} AND FVE>10 AND Fml("VFI")>-3 {Condition 7} AND C>Ref(C,-1) AND C>O {Condition 8} In The Indicator Builder, 2 New Indicators FVE
pds:=Input("period for FVE",1,80,22); mf:=C-(H+L)/2+Typical()-Ref(Typical(),-1); fve:=Sum(If(mf>0.3*C/100,+V, If(mf<-0.3*C/100, -V,0)),pds)/Mov(V,pds,S)/pds*100; fve
VFI PERIOD:= Input("PERIOD FOR VFI ",5,1300,130); COEF:=.2; VCOEF:=Input("MAX VOLUME CUTOFF",0,50,2.5); INTER:=Log(Typical())-Log(Ref(Typical(),-1)); VINTER:=Stdev(INTER,30); CUTOFF:=COEF*VINTER*C; VAVE:=Ref(Mov(V,PERIOD,S),-1); VMAX:=VAVE*VCOEF; VC:=If(V < VMAX,V,VMAX); MF:=Typical()-Ref(Typical(),-1); VFI:=Sum(If(MF > CUTOFF, +VC, If(MF < -CUTOFF, -VC,0)),PERIOD)/VAVE; Mov(VFI,3,E);
That's it mate, Hope you can help All the best Theghost:-)
SteveB  
#12 Posted : Monday, May 16, 2005 5:02:15 PM(UTC)
SteveB

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 3/14/2005(UTC)
Posts: 65
Location: Cocoa, Florida

John, Everything you listed is exactly the way as I have it in my setup. I honestly don't know why it is not working for you. I am not aware of anything else you need but maybe there is something that it calls for that I already had and that you don't have. Unfortunately, my knowledge in this is very limited at this point as I am also fairly new to Metastock so I really don't have a solution to offer you. Hopefully someone with more experience will see something and post it here. Please let me know what you find once you get it working. Steve B
theghost  
#13 Posted : Friday, May 20, 2005 7:15:49 PM(UTC)
theghost

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/4/2005(UTC)
Posts: 63
Location: Poole Dorset England

Hello SteveB Just to let you know, I was playing in the options section with the load settings which I had set at 1300. I changed them to minimum and it worked fine! I then changed it to 500periods and it worked also. I don't know if there is a standard setting for load periods, but hay, at least it's working now Cheers:-)
SteveB  
#14 Posted : Friday, May 20, 2005 7:35:32 PM(UTC)
SteveB

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 3/14/2005(UTC)
Posts: 65
Location: Cocoa, Florida

John, I'm glad to see you got it working! I forgot all about the load settings (shows how little experience I have with Metastock at this point). I have mine set at 500 as a lot of Indicators require that as the mininum for them to be accurate. Steve B
klburris  
#15 Posted : Sunday, July 31, 2005 7:43:54 PM(UTC)
klburris

Rank: Member

Groups: Registered, Registered Users
Joined: 10/28/2004(UTC)
Posts: 16

Folks: This falls into the "For What It's Worth" column (you know, that's the column just past filter:-) Anyway, having inserted the code and run it, the results are as follows: This is one stingy piece of code. Probably just what you want, but you need a large selection (Russell 2K) to get more than about three hits. So, what I;m saying is - if you don't like the results you're getting (or not getting, as the case may be) increase your data set. -- Keith
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.