PureBytes Links
Trading Reference Links
|
A second version...first one was a Beta :o)>
Thanks William.....
//AA window
//explore
//apply to stocks
//n last quotations and n=1
price=C;
TimeFrameSet(inWeekly);
MA100week=MA(C,100);
TimeFrameRestore();
x=Cross(price,MA100week);
y=Ref(Sum(price < MA100week,250)==250,-1);
Filter=x AND y ;
AddColumn(C,"");
//for indicator builder
TimeFrameSet(inWeekly);
Plot(MA(C,100),"",colorRed,styleLine);
TimeFrameRestore();
Plot(C,"",colorBlack,styleCandle);
----- Original Message -----
From: "klashmore2003" <marc78@xxxxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Thursday, December 04, 2003 7:47 PM
Subject: [amibroker] (unknown)
> I want to be able to do the following scan
> I want to scan for all the stocks whose DAILY CLOSE,today, has
> just crossed above their 100 WEEK moving average. AND ,those stocks
> must have had a daily close below their 100 WEEK moving average every
> day for at least 250 days prior to today.
> This is a far more complicated scan than it apears on the surface.
> Can anybody tell me if Amibroker can do it.If it can I will gladly
> become a member. No other premium service I know of can do it.It's
> theoretically possible with Stockcharts, but a line would have to be
> written for every one of the 250 days.
>
>
>
>
> 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/
>
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.547 / Virus Database: 340 - Release Date: 12/2/2003
------------------------ 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/
|