PureBytes Links
Trading Reference Links
|
Greetings,
I'm a newbie who is truggling to get the following Exploration of
Bollinger Bands Breakout to produce other than zero results:
e=40;//Param("period",20,5,100,1);
f1=ln(BBandTop(C,e,2)/MA(C,e));
f2=ln(BBandTop(C,e*2,2)/MA(C,e*2));
f3=ln(BBandTop(C,e*3,2)/MA(C,e*3));
Plot(f1,"quick",1,1);
Plot(f2,"med",colorRed,1);
Plot(f3,"slow",colorBlue,1);
Filter=f1<f2 AND f2<f3 AND f1<0.02;
AddColumn(f1,"quick",1.5);
AddColumn(MA(V,100)*MA(C,100),"dollarvolume",1.0);
AddColumn(MA(Filter,20),"length",1.2);
Your valuable assistance is appreciated.
Thanks
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.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/
|