[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] buy sell arrows



PureBytes Links

Trading Reference Links


Well Tomasz the proplem has gone with d/l of ami 
3.45 from your site and the beta 3.49
 
and installed in a new location ...hmm maybe time 
for a cleanup 4 versions of ami on my hhd's  
 
Now back to the formula 

 
 volume > ma( volume, 260 );  
or  volume 
> sum( volume, 260 )/260;
 
How would I find stocks with a 20 % volume spike greater than the average 
?
 
Thanks David 
 
 
<BLOCKQUOTE 
>
----- Original Message ----- 
<DIV 
>From: 
Tomasz Janeczko 

To: <A title=amibroker@xxxxxxxxxx 
href="">amibroker@xxxxxxxxxxxxxxx 
Sent: Friday, February 23, 2001 6:52 
AM
Subject: Re: [amibroker] buy sell arrows 


Hello David and all,
 
You probably will  NOT get any signals 
from the formula volume > sum(v,260)/52 

because it gives "TRUE" result only if one day 
volume is 5 times bigger than 
one-year average (it is basically the same 
as : volume > 5 * ma( volume, 260 ) )
 
Such condition does not happen often (if 
any)
If you want to see if a one day volume is above 
one-year average of volume just
use:
 volume > ma( volume, 260 ); 

 
or
 
volume > sum( volume, 260 )/260;
 
(the second example shows the same usingsum() 
function as in your original formula)
 
Best regards,Tomasz Janeczko===============AmiBroker - the 
comprehensive share manager.<A 
href="">http://www.amibroker.com
<BLOCKQUOTE 
>
----- Original Message ----- 
<DIV 
>From: 
David 
Holzgrefe 
To: <A 
title=amibroker@xxxxxxxxxxxxxxx 
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Thursday, February 22, 2001 
4:44 AM
Subject: [amibroker] buy sellarrows 


hi Tomasz , for some reason this afl doesnot 
invoke the buy sell arrow i am using the latest ami 3.9
 
also i noticed that the from to date in the 
range box doesn't appear to work ?
 
 
thanks David
 
annvol =  sum(v,260)/52 ;
 
 
 
buy =v>annvol ;sell 
=0;Your use of Yahoo! Groups is subject to the <A 
href="">Yahoo! Terms of Service. 
Your 
use of Yahoo! Groups is subject to the <A 
href="">Yahoo! Terms of Service.