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.
Pastimes : Predictions - Does Anybody Get It Right?

 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext  
To: Steve Lee who wrote (71)1/28/2002 2:37:54 PM
From: MechanicalMethod   of 117
 
the goalposts do move

I agree but for the fun of it here's an old school look at the markets.

FieldGoal:

1. Day 1: Open in top 25% of today's daily range.
2. Day 1: Close in bottom 25% of today's daily range.
3. Day 1: Today's range > xaverage(range,21).
4. Day2: Open <= bottom 25% of Day1 range.
5. Day 2: Close in top 25% of today's daily range.
6. Day2: Today's range > xaverage(range,21).

Note: the code "hits" after the "left" and "center" goal posts show up.
You have to check for day 3 that the Open >= Day 2 close and you want a
move above Day2's High.

condition1 = O[1] >= L[1] + (.75 * range[1]);
condition2 = C[1] <= L[1] + (.25 * range[1]);
condition3 = range[1] > xaverage(range[1],21);
condition4 = O <= L[1] + (.25 * range[1]);
condition5 = C >= L + (.75 * range);
condition6 = range > xaverage(range,21);

if condition1 and condition2 and condition3 and condition4 and condition5 and condition6 then buy h stop;
Report TOU ViolationShare This Post
 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext