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

ATR Stop or DEVSTOP for Metastock
matz
over 13 years ago
Metastock

Rating:
0 / 5 (Votes 0)
Tags:
metastock, stop loss, atr

Here’s what I think a DEVSTOP is in Metastock language, described in Kase’s “Trading with the Odds”, and better described in Kaufman’s “Trading Systems and Methods”. It uses a 2-day range, calculates an average range and SD of the range, and then draws 4 lines below the high, at 1 range and 0,1,2, and 3 SD’s. “2.2” and “3.6” are corrections for skew of the distribution. Mike Lucero

Screenshots

Files

Indicator / Formula

Copy & Paste Friendly
AVTR:=Mov(HHV(H,2) - LLV(L,2),20, S);
SD:=Stdev(HHV(H,2) - LLV(L,2),20);
HHV(H-AVTR-3.6*SD,20);
HHV(H-AVTR-2.2*SD,20);
HHV(H-AVTR-SD,20);
HHV(H-AVTR,20);

0 comments

Leave Comment

Please login here to leave a comment.

Back