PureBytes Links
Trading Reference Links
|
Thanks Tomasz I will have a look at those but as
you can see form other posts the formula does delivery results (volume
spikes)
but for some reason ami (well my version) is
erratic is the display of the arrows sometime there the other times there not
?
I'm going to try a re install of ami to see if that
can fix it
<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.
|