PureBytes Links
Trading Reference Links
|
Hi Ace,
Thank you for sharing, I'll definitely try it.
tks
KK
----- Original Message -----
From: "acesheet" <acesheet@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, January 09, 2004 9:18 AM
Subject: [amibroker] Re: peak/trough with number of bars
> KK,
>
> try these functions that I developed:
>
> file://---------------------------------------------------------------
> file://-------------------- N Degree Swing High ----------------------
> file://---------------------------------------------------------------
> // The 'degree' of a swing high refers to the
> // number of lower/equal highs to both sides of the bar
> // being analyzed. As an example if n=2 then there are
> // 2 lower or equal highs prior to the analyzed bar and
> // 2 lower or equal highs to the right of the bar
> file://---------------------------------------------------------------
> function SwingHigh(n)
> {
> // Degree of SH set
> // --------------------------------------------------
> // Peak points (SH's)
> pk=Ref(HHV(H,2*n+1)==Ref(H,-n),n);
> // --------------------------------------------------
> // SH envelope values
> sh1=IIf(pk,H,Null);
> sh=Ref(HighestSince(pk,sh1,1),-n-1);
> return sh;
> }
> file://---------------------------------------------------------------
> file://-------------------- N Degree Swing Low ----------------------
> file://---------------------------------------------------------------
> file://---------------------------------------------------------------
> // The 'degree' of a swing low refers to the
> // number of higher/equal lows to both sides of the bar
> // being analyzed. As an example if n=2 then there are
> // 2 higher or equal lows prior to the analyzed bar and
> // 2 higher or equal lows to the right of the bar
> file://---------------------------------------------------------------
> function SwingLow(m)
> {
> // Degree of SL set
> // --------------------------------------------------
> // Trough points (SL's)
> tr=Ref(LLV(L,2*m+1)==Ref(L,-m),m);
> // --------------------------------------------------
> // SH and SL envelope values
> sl1=IIf(tr,L,Null);
> sl=Ref(HighestSince(tr,sl1,1),-m-1);
> return sl;
> }
>
> These work quite well.
>
> -ace
>
> --- In amibroker@xxxxxxxxxxxxxxx, "kk2628" <kk2628@xxxx> wrote:
> > Hi,
> >
> > I have tried to use the peak and trough function to do some wave
> analysis but I encounter some problems due to the sudden surge at
> certain time. I thought it will be nice if these two functions can
> incorporate the count bars as one of the parameter e.g. peak(array,
> change, barcount,n=1). It will be even better if the change
> parameter can be use as point as well as percentage. TJ, can this to
> be included in the wish list please.
> >
> > tks
> > KK
>
>
>
>
> 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 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
---------------------------------------------------------------------~->
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/
|