PureBytes Links
Trading Reference Links
|
Here is what I use.
/* Bollinger Band Squeeze - According to Bollinger a squeeze, by
definition is less than 2% */
bw =(BBandTop(C,20,2)-BBandBot(C,20,2)) / MA(C,20);
Cond1 = bw <.02;
Filter = Cond1;
AddColumn(Cond1,"Squeeze",1.0);
Rick
--- In amibroker@xxxxxxxxxxxxxxx, "pennellp2000" <pennellp2000@xxxx>
wrote:
> do a search on the net for BB Bandwidth and BB Percent ( or %BB or
> BB%). This should get you some good information and Metastock
> formulas which are easy to convert to Amib Phill
------------------------ 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/
|