Spydertrader's Jack Hershey Equities Journal

Status
Not open for further replies.
Quote from Reno:

Earnings dates: http://www.zacks.com/ free registration allows you to set up a tracking portfolio and under EPS view upcoming earnings dates are conveniently listed for all stocks in the portfolio. Some may find this of value.

Thanks for the above reference. I have been looking for something along these lines for quite some time. This saves me from reviewing the list every few days to double check the stocks scheduled to report earnings.

With respect to Float values, only checking every six months might work for you. However, expect to exclude stocks which otherwise would have qualified based on changes in Float occurring within that six month window. Better to use one of the other listed free services. Float may not change each day, but changes do occur more frequently than twice a year.

Quote from acesheet:

I was studying your WL v3 code tonight and when I came to BOP I noticed SMASeries( BOPSeries, 1 ) in the PVADScore function. Is it a mistake that you are taking a 1 day SMA or were you just messing around with different values at some point?

No mistake. I simply don't know enough WealthScript to code like a professional (as should be evident by my often sloppy code - particularly my failure to indent when using functions). In the scoring section of the Hershey v3.0 code, we only wanted to look at a single day for Warden's Balance of Power (BoP). A BoP Score above .30 provides us a binary A/D Score of One. Writing it in the form of a series was the only way I could get it to work correctly. Once it worked, I left it alone. It may not be pretty, but it does the job I needed it to do.

- Spydertrader
 
To create the following lists of stocks, I used 90 RS and 80 EPS. Using 90 RS and 90 EPS resulted in an initial stocktables.com sort of too few equities.

2005-09-23, Friday - Lists

Hershey Wealth-Lab Chartscript Culling Methodology
Hershey Equities Rank V 3.0.0 / Qcharts Culling / Stocktables.com Sort

Hot List

DPTR FORD HANS IRIS LUFK SNHY VIVO VPHM

Dry Up Stocks

CKCM CMT IRIS NGPS SNHY

Hot List Stocks Scores

DPTR - 6
FORD - 2
HANS - 0
IRIS - 1
LUFK - 2
SNHY - 0
VIVO - 5
VPHM - 2

Dry Up Stocks Scores

CKCM - 2
CMT - 0
IRIS - 1
NGPS - 0
SNHY - 0

Keep an Eye on These Stocks

NFLX (Attached)

<img src=http://www.elitetrader.com/vb/attachment.php?s=&postid=849354>
 

Attachments

2005-09-23, Friday - Midday Update

Our system failed to generate any signals this morning as None of our List of Dry Up Stocks reached Low Band Dry Up levels prior to 11:30 AM.

- Spydertrader
 
I cannot see the scoring of jack hershey's 3 lists ....zero's
one's and seven's at stocktables's headings . I know i'm not seeing something every one else does.(in wealth-lab? )

Thanks for you patience and guidence
cheers
john
 
Quote from appleseed:

I cannot see the scoring of jack hershey's 3 lists ....zero's
one's and seven's at stocktables's headings . I know i'm not seeing something every one else does.(in wealth-lab? )

You won't see them listed at the stocktables.com web site. You create three lists titled Sevens, Ones & Zeros using data obtained from the stocktables.com web site. Each list has instructions indicating where (top, bottom, middle) on the initial sort (from stocktables.com) you should find stocks to create the lists. As you read further into the Journal, you'll see how automated scoring eliminates the need to create these three lists.

- Spydertrader
 
Hi Spydertrader,

The following code is equivalent to the previous post...


function calcPVADScore() : integer;
begin
var Score : integer = 0 ;

if (@#Close[BarCount - 1] > 1.01 * @#Close[BarCount - 2]) then
Score := Score + 4;
if (@#volume[BarCount - 1] > 1.10 * @#volume[BarCount - 2]) then
Score := Score + 2;
if @BopSeries[Barcount - 1] > 0.30 then
Score := Score + 1;

Result := Score;
end;


JMWilk
 
Quote from jmwilk:

The following code is equivalent to the previous post...

Thanks for taking the time to clean my sloppy code. I appreciate the assistance, and plan to credit your work in the next update.

- Spydertrader
 
Status
Not open for further replies.
Back
Top