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: bdog who wrote (33919)2/11/2000 4:11:00 PM
From: Doug R  Read Replies (3) | Respond to of 79231
 
Bdog,

You outta ROHN with Ivan? I lightened my load some. I trimmed the Phillymag exposure by 950 shrs. also.

Do ya think today was nasty enough to warrant the scan?

Doug R



To: bdog who wrote (33919)2/11/2000 4:26:00 PM
From: Bruce Cullen  Read Replies (1) | Respond to of 79231
 
Ok so with todays close where does it seem to fall now?
(PCNA) looks like after hours it's trading at 4 3/16 but it's hard to tell if this quote is accurate?

Bruce



To: bdog who wrote (33919)2/12/2000 9:01:00 AM
From: Warthog  Read Replies (1) | Respond to of 79231
 
bdog,

Here is an interesting function, I came up trying to
isolate higher bottoms.

Name: xxStoch89TotalUp

x1:=If(stoch(89,3)>=mov(stoch(89,3),2,e),1,0);
x2:=if(ref(stoch(89,3),-1)<ref(mov(stoch(89,3),2,e),-1),1,0)
x3:=if(x1=1 and x2=1,1,0);
x4:=if(x3=1,stoch(89,3),PREV);
x4

This plots out as a step function along the crossovers of
%k %d.

To see if a Xover occurred which is higher than the
previous crossover ..

if(fml("xxStoch89TotalUp")>ref(fml("xxStoch89TotalUp"),-1),1,0)

I have found this useful in RSI junk, with RSI() replacing the stoch().

wart