PureBytes Links
Trading Reference Links
|
I'm sure that this is not all of them...
Cooper 180:
1. Day 1: Close in bottom 25% of daily range.
2. Day 2: Close in top 25% of daily range.
3. Day 2's close is > 10dma and 50dma..
condition1 = C[1] <= L[1] + (.25 * range[1]);
condition2 = C >= L + (.75 * range);
condition3 = C > average(C,10) and C > average(C,50);
if condition1 and condition2 and condition3 then buy h + 0.5 stop;
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;
Cooper Island:
1. Gap open down to a 2 month low.
2. Close in top 50% of day's range and >= Open.
condition1 = O < L[1] and L = Lowest(L,42);
condition2 = C >= L + (.50 * range) and C >= O;
if condition1 and condition2 and condition3 and condition4 and condition5
and condition6 then buy h + 0.5 stop;
With all of these scans you should wait for a move above the "hit" day's
high.
Mark Brown
-------------------------
"I tried being reasonable, I didn't like it." - Clint Eastwood
-------------------------
|