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: Doug R who wrote (29482)5/13/1999 11:46:00 AM
From: Bob Jagow  Respond to of 79243
 
It was the literal translation, Doug.
As I just cautioned Craig, the only way to get MS to do stoc right is to use a custom formula [their example will do fine].

Bob
----------
input = "50k.lst";
integer tbar; tbar := -10;
output = "K Rocks-10.lst";
set roc = 2;
Set STOCHASTIC = 4,3,3;
printhdrln " symbol, vol/vol(-1),testdate";
if StochasticPctK(tbar) >= 77 & StochasticPctK(tbar) <=83 then
if StochasticPctK(tbar) > StochasticPctK(tbar-1) then
if roc(tbar) > roc(tbar-1) & vol(tbar) > 1.1*vol(tbar-1) then
println symbol:-6,",",vol(tbar)/vol(tbar-1):-6:3,",",date(tbar);
endif; endif; endif;