Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
ATR Pivots for Metastock
Pivots can for instance be used to look for price patterns or used in pattern exploration indicators.
Screenshots
Files
Indicator / Formula
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.
Back