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: TechTrader42 who wrote (3918)4/8/1998 9:03:00 PM
From: Ken Adams  Read Replies (1) | Respond to of 11149
 
Brooke...

Thanks for the revise. An interesting list, to be sure. Still, with only half the list being "up", it may show the influence of the overall market cycle. I would think, in a positive market climate, nearly all would be up, wouldn't you?

I need to get back into my cycle work. Been too long.

Ken



To: TechTrader42 who wrote (3918)7/21/1998 2:10:00 AM
From: Dale Wingo  Read Replies (1) | Respond to of 11149
 
Hi:

I'm a rookie and need some help..

In an attempt to begin some backtesting on some scans, I'm trying to determine what relative day number a certain date is using the following:

Output="Dater.lst";

DaysToLoad = 250;

integer intdays;

string strTarget;

strTarget:= "03/24/1998";

for intdays = -250 to 0 step 1 do
if date(intdays) = strTarget then
println "Date:",date(intdays):11, " = ", intdays;
intdays = -250;
endif;
next intdays;

When I run it I get an error just before the "Then" in the If statement: "Comparison undefined".

What am I doing wrong?

Thanks for any and all help!