PureBytes Links
Trading Reference Links
|
Hi Stewart,
the easiest (and also the fastest) would be
to seperate them by putting them to into 2 watchlists,
one for indices the other for normal tickers.
In the exploration settings you can then define
which to use.
I'm running a script to do this. This has
to be done once a month or so.
UM
/*----------------------------------------
This script filters out all thinly traded stocks
and all indices if their names start with a "^"
(you can modify this below)
Edit/Clear Watchlist #0
Apply to all stocks
Set "n last quotes" to 1 (better set both dates to todays date!)
Click "Explore"
Then put the result to watchlist #0 (right click on the results)
Apply your other formulas on watchlist #0
----------------------------------------*/
maVol = MA(V,10);
c1 = MAVol > 100000;
c2 = C > 1.00;
c3 = StrLeft(Name(), 1) == "^";
Filter = c1 and c2 and (not C3);
AddColumn(C, "C", 1.2);
AddColumn(V, "Vol", 1);
AddColumn(maVol, "maVol", 1);
//----------------------------------------
----- Original Message -----
From: "Stewart" <stewart@xxxxxxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Tuesday, May 06, 2003 11:05 PM
Subject: [amibroker] Index Recogniztion
> Hi All,
>
> Is there something that prevents AB from recognizing indexes in
> explorations? Is there a setting that controls this?
>
> Thanks,
>
> Stewart
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Rent DVDs from home.
Over 14,500 titles. Free Shipping
& No Late Fees. Try Netflix for FREE!
http://us.click.yahoo.com/BVVfoB/hP.FAA/uetFAA/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
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|