| 
 PureBytes Links 
Trading Reference Links 
 | 
Jayson,
Shouldn't the new high and new low code be:
newhigh=H>Ref(HHV(H,25),-1);newlow=L[From: "Jayson" 
>Reply-To: amibroker@xxxxxxxxxxxxxxx 
>To: "1ami" 
>Subject: [amibroker] composites 
>Date: Wed, 16 Oct 2002 12:00:54 -0400 
> 
> 
>Tomasz, all; 
> 
>I run a scan nightly to create composites for my sector work. each night I 
>will have to delete the composites and start over because I get the 
>following result....... 
> 
> 
> 
> 
> the partial code that creates one of the composites is..... 
> 
>Buy=1; 
> 
>newhigh=C>Ref(HHV(C,25),-1); //stocks making new high 
> 
>newlow=C> 
>x=SectorID(0); 
> 
>AddToComposite(IIf(x==1,C,0),"~Capital Goods" ,"c",flags=1); 
> 
>AddToComposite(IIf(x==1,V,0),"~Capital Goods" ,"v",flags=1); 
> 
>AddToComposite(IIf(x==1,1,0),"~Capital Goods" ,"O",flags=1); 
> 
>AddToComposite(IIf(x==1 AND newhigh,1,0),"~Capital Goods","H",flags=1); 
> 
>AddToComposite(IIf(x==1 AND newlow,1,0),"~Capital Goods","L",flags=1); 
> 
> 
> 
>I added the flags=1 and it seemed to work in the previous beta but I only 
>used the flag a couple of times before the last upgrade. Since the upgrade 
>it does not seem to solve the problem. Once deleted and recreated it works 
>fine. Any guidance would be welcome. 
> 
>TIA 
> 
>Jayson 
> 
> 
Unlimited Internet access -- and 2 months free!  Try MSN. Click Here 
] |