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 Based Stops by Rajat K. Bose for Metastock
matz
over 13 years ago
Metastock

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

Hello RTs,

If any of you could find time, could you just test the efficacy of this Upper and Lower Band based on ATR. The MetaStock formulas are given at the end.

Using the default values used in the formulas, I have found that they provide effective risk control while trading. the upper band can be used as the extreme point to get rid of shorts and vice versa.

In fact, prices tend to remain above both the bands while the market is in a strong uptrend, and prices remain below the bands in a downtrend. During short-term range-bound markets, they tend move between the bands.

I have found this idea in Tushar Chande’s “New Technical Trader”. It would be be very nice if any of you could comment on them.

Thanks in advance.

Regards,
Rajat K Bose

Source: RealTraders Discussion Group

Screenshots

Files

Indicator / Formula

Copy & Paste Friendly
Prd1:=Input("ATR Period",5,20,5);
Prd2:=Input("Period for Highest High Value",5,20,10);
Prd3:=Input("Period for Lowest Low Value",5,20,10);

{Upper Band}
(HHV(LLV(L,Prd1)+ATR(Prd1),Prd2));

{Lower Band}
(LLV(HHV(H,Prd1)-ATR(Prd1),Prd3));

{HHV = Highest High Value;
LLV = Lowest Low Value;
Prd1 is a variable that takes the ATR period as well as Lowest Low value
period in Upper Band while it takes the Highest High Value for the lower
band, Prd2 variable is self explanatory.}

0 comments

Leave Comment

Please login here to leave a comment.

Back