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 : TA-Quotes Plus -- Ignore unavailable to you. Want to Upgrade?


To: Richard Estes who wrote (6172)8/26/1998 8:13:00 PM
From: TechTrader42  Respond to of 11149
 
Richard: Yes, that's true in the charting program -- it has the horizontal lines at -100 and 100. I didn't notice until you pointed it out. It would be better if the lines could be at -150 and 200. But at least we can scan for our own trigger points. Here's a scan for stocks crossing -150:

output = "cci.lst";
input="whatever.lst";
//ProcessMS = "D:\META\CCI",VMS;

Set CCI = 13;

if CCI(0)>-150 and CCI(-1)<-150 then
println symbol:-8, "CCI Today":11,CCI(0):6:3,
"CCI Yesterday":15,CCI(-1):6:3;
endif;