SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : TA-Quotes Plus -- Ignore unavailable to you. Want to Upgrade?


To: Bob Jagow who wrote (5974)8/11/1998 1:41:00 PM
From: Sean W. Smith  Read Replies (2) | Respond to of 11149
 
Looks like a bug, Brooke.
Println symbol, "," , Description, "," , IRLSymbol, IRLDailyIndex;
gives the IRLSymbol, e.g. INSLIFE for AAG, and F for it shows
Industry Group: Insurance-Life Industry Sector: Financial.
The bug shows when you open INSLIFE [!ID114] and F2 it; the list starts with ABBK, and is in fact the list for BANKNE [!ID012] -- explaining your results!

I'd never noticed this because the alternative I always use, F1, gives the correct issues.

Bob


Couldn't be a bug. must be user error.... :)

Sean



To: Bob Jagow who wrote (5974)8/11/1998 6:24:00 PM
From: Monty Lenard  Read Replies (2) | Respond to of 11149
 
Hi Bob, rather that letting Sean hog all the questions I thought I
would share one with you. :-)

I just ran the following scan and got some unexpected results
the date(bar) gave me different dates within the same scan.

input="nyse.lst";
output="2 NYSE Over 20 DMA.lst";
daystoload=1000;
integer bar;
bar:= -202;
if Close(bar)> movavg(bar,20,cl)
then
println symbol,",",date(bar);
endif;

Partial Sample of Results:
AFM ,10/20/1997
AFS ,10/20/1997
AGC ,10/20/1997
AGF ,10/20/1997
AGI ,10/20/1997
AGL ,10/20/1997
AGP ,10/17/1997
AHC ,10/20/1997
AHE ,10/20/1997
AHG ,10/20/1997

Notice that day -202 is 10/20/97 but I had several drop out with 10/17/97

Am I doing something wrong?

Thanks
Monty