Skip to main content

Stock Rhythm System for Metastock

jonny about 10 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)

1 comments

Leave Comment

Please login here to leave a comment.