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 : The 56 Point TA; Charts With an Attitude -- Ignore unavailable to you. Want to Upgrade?


To: Magnatizer who wrote (22010)10/12/1998 12:45:00 AM
From: Doug R  Read Replies (1) | Respond to of 79273
 
David,

BGEN is within a cheezebit of a comkey hit.

Also, while checking the previous KM pastes for clues, I noticed that on Friday the 13, 8, 8 is crossing over with a really nice downtrending neckline on a 3 dRSI IHS with 2 shoulders on each side. There's definitely potential in it.

Also also, for the comkey scan...the 8EMA/8SMA crossover can occur any time in the previous 3 days but most often (from what I've looked at) occurs on the hit day. CADE on 3/27/91 is a good example. On that date it crosses by just .0001. Do these scans go that deep on the decimals?
And, back off the 13 d%K "OR" thingee to 70 and rising.

Doug R



To: Magnatizer who wrote (22010)10/12/1998 1:10:00 AM
From: Craig DeHaan  Respond to of 79273
 
Moby One,
On Brooke's Shark bit,

output = "shark_s.lst";
input="250vol.lst";
ProcessMS = "c:\metav\shark_s\",VMS;
integer i, j;
float shark, apex, WB, fin, sharkhigh, sharklow, symmetry;

for i = -24 to 0 step 1 do

if close(i) > 5 then //<<add min $ up here for speediness

symmetry:=.28;
apex:=(high(i)+low(i))/2;
WB:=range(i-2);
if apex<=(high(i-2)-(WB*Symmetry)) and
apex>=(low(i-2)+(WB*Symmetry)) then
fin:=1;
==================
Guts omitted here
==================
else
fin:=0;

endif; endif; //<< add an endif; to balance before next i;

next i;