PureBytes Links
Trading Reference Links
|
thx! works for finding the "High". 2 following
questions.
1. how to test the high is a real peak? high can be a
lower high or a higher high.
2. how to check if the base is long enough? basically
i need to check the "high/peak" should happen 30-60
days before the current day(too close means there is
no reliable base built up).
Thx for the help!
--- Graham <gkavanagh@xxxxxxxxxxxxx> wrote:
> Try this exploration
> x3 = HHV(H,60);
>
> Near = C > 0.9*x3 AND C < x3;
>
> Filter=Near;
>
> AddColumn(x3,"peak",1.2);
>
> AddColumn(C,"close",1.2);
>
> Cheers,
> Graham
> http://e-wire.net.au/~eb_kavan/
>
> -----Original Message-----
> From: hongyu lu [mailto:hl_107@xxxxxxxxx]
> Sent: Sunday, 29 February 2004 9:15 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] break out detection.
>
>
> i am new to amibroker. but i know i found a gem. :-)
>
> i wonder if anybody ever developped a "break out
> detection" system with amibroker. i tried peak(),
> hhv() and llv(). but since i am pretty new, so still
> can not figure it out.
>
> basically i want to find the highest peak for the
> last
> 3/6 months and if the current price is close to that
> value, then i assume a break out may happen.
>
> thx for any hint/help.
>
>
> __________________________________
> Do you Yahoo!?
> Get better spam protection with Yahoo! Mail.
> http://antispam.yahoo.com/tools
>
>
>
> 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
>
>
>
>
>
>
>
__________________________________
Do you Yahoo!?
Get better spam protection with Yahoo! Mail.
http://antispam.yahoo.com/tools
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/
|