PureBytes Links
Trading Reference Links
|
Hello, Ed
What is the implication of range pattern ? I got some
circle some break up some break down ?? More clue
please.
--- ed nl <ed2000nl@xxxxxxx> wrote:
> /*
>
> IDNRn: an inside day with the narrowest range of the
> past nn days
>
> Edward Pottasch, nov 2004
>
> */
>
> // number of days
> nn = 3;
> // range
> rng = H - L;
> // consecutive narrowing range
> cons = barssince( rng >= ref(rng,-1) );
> // find the pattern IDNRn
> tt = cons == nn AND Inside();
>
> Plot(C,"",colorGreen,64);
> PlotShapes(shapeCircle * tt,colorWhite, layer = 0,
> yposition = (H+L)/2, offset = 0 );
>
> [Non-text portions of this message have been
> removed]
>
>
__________________________________
Do you Yahoo!?
Meet the all-new My Yahoo! - Try it today!
http://my.yahoo.com
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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/
|