PureBytes Links
Trading Reference Links
|
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 oneday
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 using sum()
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@xxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Thursday, February 22, 2001 4:44
AM
Subject: [amibroker] buy sell arrows
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.
|