PureBytes Links
Trading Reference Links
|
qprank = GetExtraData("epsrank")+GetExtraData("qrs")+RSI(6) ;
Filter= C>4 AND MA(V,11)>150000 AND qprank>200;
CategoryAddSymbol( "", categoryWatchlist, 7 );
----- Original Message -----
From: jim_wiehe
To: amibroker@xxxxxxxxxxxxxxx
Sent: Saturday, December 09, 2006 5:24 AM
Subject: [amibroker] help on a watchlist
I am trying to be a little more productive with a prefilter
performed on common stocks. My goal is to have the basic prescan
place the results automatically into a watchlist. My results are the
complete list of common stocks going into the watchlist. AA menu
produces accurate results but what's going into the watchlist is
not. Anybody have a suggestion?
qprank = GetExtraData("epsrank")+GetExtraData("qrs")+RSI(6) ;
IIf(Filter= C>4 AND MA(V,11)>150000 AND qprank>200,CategoryAddSymbol
( "", categoryWatchlist, 7 ),0 );
AddColumn(Close,"close",1.2);
AddColumn (Volume,"volume",1.0);
AddColumn (MACD() ,"macd" ,1.2);
AddColumn (ADX() ,"adx",1.);
Thanks in advance
Jim
----------------------------------------------------------------------------
avast! Antivirus: Inbound message clean.
Virus Database (VPS): 0655-1, 12/08/2006
Tested on: 12/9/2006 5:28:13 AM
avast! - copyright (c) 1988-2006 ALWIL Software.
Content-Description: "AVG certification"
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.15.15/580 - Release Date: 12/8/2006 12:53 PM
|