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

 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext  
To: Chris G. who wrote (3009)1/13/1998 1:20:00 PM
From: TechTrader42  Read Replies (2) of 11149
 
P.S.: Here's Jeff Grover's slope formula, ready to run:

//Slope by Jeff Grover

output="slope.lst";

DaysToLoad = 500;

float b, refday, daysback, y, x, slope;

b := 0; // don't believe this matters
refday := 0; // end day
daysback := 15; // days back to calculate from
y := close(0) - close(refday-daysback); // "rise" over number of days
x := refday-daysback; // "run" or number of days
slope := (y - b) / x; // slope = rise / run

println Symbol , "," , " Slope:", slope;
Report TOU ViolationShare This Post
 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext