PureBytes Links
Trading Reference Links
|
Hi,
you can use my formula in indicator builder and
automatic analyzer.
I have selected in the filter below the volume >
10 day volume moving, which has the shortcut V1
V2 is the 20day volume moving and V3 is the 50day
volume moving.
The pds variable in the formula is the setting for
the indicator builder
//Volume with compared to MA
//written by Thomas Zmuck
//Date: 15-07-02
//thomas.zm@xxxx
pds = 10;
V1 = V/MA<FONT
size=1>(V,10); V2 =
V/MA<FONT
size=1>(V,20);
V3 = V/MA<FONT
size=1>(V,50);
barcolor = IIf<FONT
size=1>(V<MA<FONT
size=1>(V,pds),4<FONT
size=1>,6<FONT
size=1>);
/* Colourized price bars drawn here */
Plot(100<FONT
size=1>*Volume/MA<FONT
size=1>(V,pds)," V/ma(10)"<FONT
size=1>,barcolor,2<FONT
size=1>+4<FONT
size=1>);
Plot(100<FONT
size=1>," AVG(10)"<FONT
size=1>,1,<FONT
color=#ff00ff size=1>1);
unsure = V1<1
AND V2<1
AND V3<1;
sure = V1>1
AND V2>1
AND V3>1;
Reversal = V1>3
AND V2>1
AND C> (H-L)/<FONT color=#ff00ff
size=1>2 + L;
Filter = V1><FONT
face="Courier New" color=#ff00ff size=1>4;<FONT
color=#0000ff size=1>
AddColumn(<FONT color=#ff00ff
size=1>100*V/<FONT color=#0000ff
size=1>MA(V,<FONT color=#ff00ff
size=1>10),<FONT color=#ff00ff
size=1>"V/ma(V,10)",<FONT color=#ff00ff
size=1>1.0);
AddColumn(<FONT color=#ff00ff
size=1>100*V/<FONT color=#0000ff
size=1>MA(V,<FONT color=#ff00ff
size=1>20),<FONT color=#ff00ff
size=1>"V/ma(V,20)",<FONT color=#ff00ff
size=1>1.0);
AddColumn(<FONT color=#ff00ff
size=1>100*V/<FONT color=#0000ff
size=1>MA(V,<FONT color=#ff00ff
size=1>50),<FONT color=#ff00ff
size=1>"V/ma(V,50)",<FONT color=#ff00ff
size=1>1.0);
AddColumn(<FONT color=#0000ff
size=1>ROC(C,<FONT color=#ff00ff
size=1>1),<FONT color=#ff00ff
size=1>"%today");
Hope this helps for your beginning on thisgreat
software
Regards
Thomas Zmuck
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
<A title=billpritjr@xxxx
href="">BillPritJr
To: <A title=amibroker@xxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Sunday, July 21, 2002 5:24 PM
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.ThanksBill<A
href="">billpritjr@xxxxYour
use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
|