PureBytes Links
Trading Reference Links
|
Brian,
Your formula for the Moving average of volume for the last 50 periods ,
also includes the volume for today, Since the poster is trying to screen
that "Today's " Volume is 4 times greater than average volume, I believe
the formula should like something like this:
Volume_Screen=V > 4 * Ref(MA(V,50),-1);
Filter=Volume_Screen > 0;
AddColumn(V, "vol",1);
Anthony
Brian Elijah wrote:
> Try this
>
> Xv=V > 4*(MA(V,50));
>
> Filter=Xv > 0 AND Close > 0 AND Close < 20 AND Volume > 200000;
>
> AddColumn(xv,"Volume");
>
> ----- Original Message -----
> From: BillPritJr
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Sunday, July 21, 2002 10:24 AM
> Subject: [amibroker] High volume screen
> Just purchased the $89 version of AmiBroker, was wondering
> if someone
> could post the formula for screening for all stocks that
> had "today's" volume, or most recent day volume, which
> traded at 4
> times average volume.
>
> Thanks
>
> Bill
>
> billpritjr@xxxx
>
>
>
>
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.
>
>
> Yahoo! Groups Sponsor
ADVERTISEMENT
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|