Skip to main content

ATR Pivots for Metastock

matz over 15 years ago Metastock

  • Rating:
    0 / 5 (Votes 0)
  • Tags:
    metastock, pivots

Pivots can for instance be used to look for price patterns or used in pattern exploration indicators.

Screenshots

Files

Indicator / Formula

Copy & Paste Friendly
periods:=Input("ATR Periods?",1,100,10);
TH:=If(Ref(C,-1) > H,Ref(C,-1),H);
TL:=If(Ref(C,-1) < L,Ref(C,-1),L);
TR:=TH-TL;
R#1:=C+Mov(TR,periods,S);
S#1:=C-Mov(TR,periods,S);
Ref(R#1,-1);Ref(S#1,-1);

0 comments

Leave Comment

Please login here to leave a comment.