Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Stock Rhythm System for Metastock
jonny
almost 8 years ago
Metastock

Rating:
5 / 5 (Votes 2)
Tags:
metastock

In Jeffrey Owen Katz’s article “Trading stocks with a cyclical system” he introduces the Stock Rhythm System. In MetaStock 6.5, or higher, you can easily create this system. With MetaStock running choose “System Tester” from the Tools menu, click on the New button and enter the following formulas:
Signal Formulas

Indicator / Formula

Copy & Paste Friendly
{Enter Long}
thresh:= 4;
k:= 3;
m:= 63;
Value1:= Stdev(Ref(ROC(C,k,$),-m),20);
Value2:= Ref(ROC(C,k,$),-m);
When(Value2 > thresh*Value1)

{Close Long}
thresh:= 4;
k:= 3;
m:= 63;
Value1:= Stdev(Ref(ROC(C,k,$),-m),20);
Value2:= Ref(ROC(C,k,$),-m);
When(Value2 <-thresh*Value1)

0 comments

Leave Comment

Please login here to leave a comment.

Back