PureBytes Links
Trading Reference Links
|
1) Try this code to run the exploration:
BB_top = BBandTop(C,15,2);
BB_bot = BBandBot(C,15,2);
BB_med = (BB_top + BB_bot)/2;
Filter = Close >= BB_med AND Open >= Ref(Close, -1);
AddTextColumn( FullName(), "Full Name" );
AddColumn( Close, "Close", 1.2 );
AddColumn( Volume, "Volume", 1.0 );
/*Filter=1 - all symbols and quotes are accepted*/
/*1.2 - number format with 2 decimal digits*/
2) and this code to plot the chart (put it into "blank" afl file):
Title = Name() + " \\c25" + Interval(format=2) + " " + Date() +
"\\c-1 O=" + O + " H=" + H + " L=" + L + " C=" + C;
Plot( Close, "", 42, 64 );
GraphXSpace = 1;
BB_top = BBandTop(C,15,2);
BB_bot = BBandBot(C,15,2);
BB_med = (BB_top + BB_bot)/2;
Plot( BB_top, "", 32, 1 );
Plot( BB_bot, "", 32, 1 );
Plot( BB_med, "", 27, 1 );
3) I also find Yahoo search feature very inefficient. There was the
code posted for VIDYA just a few weeks ago in message #76847 but the
"search" couldn't find it. Is there any trick here that I don't know?
LV
>
> The price must be at the top half of the bollinger envelop and
today
> open price must not be lower than previous day close.
>
> In addition, I find that yahoo groups search is very inefficient,
> does anyone knows of a better to search the archive of this group.
>
> Thanks in advance for any reply.
>
> Han Ming
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/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/
|