PureBytes Links
Trading Reference Links
|
4.53 runs fine. have any errors with 4.54 reported, that i missed, which
causes the AB smart shutdown screen to appear?
Caution, if you run this code, change the WatchList # from 0 and 1 to WL's
you don't care about---
thanks,
ron
Buy=Cross( MACD(), Signal() );
Sell = Cross( Signal(), MACD() );
Filter=Buy OR Sell;
AddColumn (Buy, "test");
if (SelectedValue(Buy) == 1)
{
CategoryAddSymbol("", categoryWatchlist, 0);
}
if (SelectedValue(Sell) == 1)
{
CategoryAddSymbol("", categoryWatchlist, 1);
}
AB = CreateObject("Broker.Application");
AB.RefreshAll();
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.676 / Virus Database: 438 - Release Date: 5/3/2004
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
---------------------------------------------------------------------~->
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/
|