PureBytes Links
Trading Reference Links
|
--- In amibroker@xxxxxxxxxxxxxxx, "Johan" <epostens@xxxx> wrote:
> Hi! Is it possible to program something that shows all stocks in
> nasdaq100 that are above ema 20? For example a list ranged from 0-
> 100..
>
> Thank you!
Try this
//With all Nasdaq 100 stocks in a separate watchlist
//Paste this into AA
//Apply to> Use filter>Define with above watchlist
//Range>N last days>N=1
//Explore using following code.
Filter = 1;
Buy = 0;
YourEMA = EMA(Close,20);
AboveEMA = Close-YourEMA;
AddColumn(AboveEMA, "EMA Ranking",1.2);
//After running the Exploration, click on the column
//headed EMA Ranking to sort ascending or descending
//You now have a rank ordered list of the Nasdaq 100.
Hope this helps
Regards
Tony
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|