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

Re: [amibroker] Screening - How?



PureBytes Links

Trading Reference Links


The answer probably depends on your data 
supplier.  "shares out" is available if using QP2 but I cannot vouch for 
the others.
 
in qp2, a simple "explore" in AA with

// rma 7.19.02
Filter =GetExtraData<FONT 
size=1>("SharesOut") 
< <FONT 
color=#ff00ff size=1>35;
shrsOut = <FONT 
color=#0000ff size=1>GetExtraData(<FONT color=#ff00ff 
size=1>"SharesOut") ; <FONT color=#008000 
size=1>
AddColumn(<FONT face="Courier New" 
size=1>shrsOut,<FONT color=#ff00ff 
size=1>"Shares 
out",<FONT 
color=#ff00ff size=1>8.1);
will find those w lt 35M shares, 
while,
Filter =GetExtraData<FONT 
size=1>("SharesOut") 
< <FONT 
color=#ff00ff size=1>35 AND 
C > <FONT face="Courier New" color=#0000ff 
size=1>MA(C,<FONT 
face="Courier New" color=#ff00ff size=1>20<FONT face="Courier New" 
size=1>);
shrsOut = <FONT color=#0000ff 
size=1>GetExtraData(<FONT color=#ff00ff 
size=1>"SharesOut") ; // 
Market Cap in MM
AddColumn(<FONT face="Courier New" 
size=1>shrsOut,<FONT color=#ff00ff 
size=1>"Shares 
out",<FONT 
color=#ff00ff size=1>8.1);<FONT color=#0000ff 
size=1>
AddColumn(<FONT face="Courier New" 
size=1>C,"<FONT 
face="Courier New" color=#ff00ff size=1>Close<FONT color=#ff00ff 
size=1>",8.1<FONT 
size=1>);
AddColumn(<FONT face="Courier New" color=#0000ff 
size=1>MA(C,<FONT 
face="Courier New" color=#ff00ff size=1>20<FONT face="Courier New" 
size=1>),"<FONT 
face="Courier New" color=#ff00ff size=1>20dMA<FONT color=#ff00ff 
size=1>",8.1<FONT 
size=1>);
 
will find those who close above their 
20dMA.  Extensions to other screens are fairly straightforward - again, 
depending on your data provider/source.
If you don't know how to use these, please refer to 
the helps - they are in plain English as far as I know.
Cheers,
Richard
 
<BLOCKQUOTE 
>
----- Original Message ----- 
<DIV 
>From: 
<A title=billpritjr@xxxx 
href="">BillPritJr 
To: <A title=amibroker@xxxxxxxxxx 
href="">amibroker@xxxxxxxxxxxxxxx 
Sent: Friday, July 19, 2002 9:32 AM
Subject: [amibroker] Screening - 
How?
Hey everyone-First, forgive me, I am a newbie at 
Amibroker.Can someone in "plain English" tell me how to do this with 
Amibroker:1.  Screen for all stocks with 35 million or less 
shares outstanding2.  Of THOSE, screen for 1-day/20-day Simple Moving 
Average Cross3.  In addition, I would like to screen all of stocks 
found in #1 above, I would like to screen for, lets say, 4 times average 
volume activity (buying if possible).My basic trading technique is 
taking CANSLIM stocks and applying the 1/20 day SMA cross as 
entry/exit.thanksBILLYour 
use of Yahoo! Groups is subject to the <A 
href="">Yahoo! Terms of Service.