| 
 PureBytes Links 
Trading Reference Links 
 | 
Jim, if this was not answered You can do it
Myhigh = hhv(h,260) >= hhv(h,520); //uses 260 days as 12 months
Or if you set it to monthly exploration
Myhigh = hhv(h,12) >= hhv(h,24);
Or you could write this as
Myhigh = hhv(h,12) >= ref( hhv(h,12), -12);
Cheers,
Graham
http://groups.msn.com/asxsharetrading
http://groups.msn.com/fmsaustralia 
-----Original Message-----
From: Jim [mailto:bankedout@xxxxxxxxxxxxx] 
Sent: Wednesday, 24 December 2003 1:01 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: Exploration Question
--- In amibroker@xxxxxxxxxxxxxxx, "DIMITRIS TSOKAKIS" 
<TSOKAKIS@xxxx> wrote:
> Jim,
> All your requirements
> "the 52 week high ", "is greater than or equal to ", "highest 
price 
> printed for the past 2 years"
> are obviously available in AFL [Amibroker Formula Language].
> We should send our software directly into the recycle bin if it 
could 
> not treat such elementary requirements.
> Have you find, in your research, other T/A softwares that didn't
do 
> this job ???
> It would be interesting to let us know...
> Dimitris Tsokakis
---------------------------------------------------------------------
Dimitris,
It was not obvious to me, that's why I asked.  
The only other exploratory softwares I have been using do not allow 
me to look for these conditions specifically.  I have tried using 
these three:
http://www.multexinvestor.com/nscreen/builder.asp
http://moneycentral.msn.com/investor/finder/customstocks.asp
http://www.prophet.net/scans/index.jsp
So far I'm not having much luck understanding some parts of the 
User's Guide built in to the Amibroker program that I downloaded.  
I'm going to keep working on it though, since the software sounds 
promising.
Jim
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 
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to:  http://docs.yahoo.com/info/terms/ 
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 
Yahoo! Groups Links
To visit your group on the web, go to:
 http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:
 amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to:
 http://docs.yahoo.com/info/terms/ 
 
 |