[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Chandre & Krolls Volatility Stop



PureBytes Links

Trading Reference Links

>From my archives - untested.
====================================================================
Volatility-Based Trailing Stops - Stop loss from Chande & Kroll's The
New Technical Trader p.167. There are three input variables to play
with.

{Volatility Stop (Long)}
Pds1:= Input("ATR Lookback?",2,100,10);
Mult:= Input("ATR Multiplier?",1,20,3);
Pds2:= Input("HHV Lookback?",2,100,20);
PrelimStop:= HHV(H,Pds1) - ATR(Pds1)*Mult;
ActualStop:= HHV(PrelimStop,Pds2);
ActualStop

{Volatility Stop (Short)}
Pds1:= Input("ATR Lookback?",2,100,10);
Mult:= Input("ATR Multiplier?",1,20,3);
Pds2:= Input("LLV Lookback?",2,100,20);
PrelimStop:= LLV(L,Pds1) + ATR(Pds1)*Mult;
ActualStop:= LLV(PrelimStop,Pds2);
ActualStop

From: Harvey Pearce <hhp@xxxxxxxx>

Use the 'short one' when you would sell short - i.e. in downtrends,
and the 'long one' in uptrends.  Stay out of the market or use
something else when things are flat.

For long trades, subtract the amount 3*ATR(10) from the highest high
over the last 10 days.  We'll call this quantity our preliminary long
stop.  Finally, use the highest value of the preliminary stop over the
last 20 days as the actual stop for long trades.

For short trades, add the amount 3*ATR(10) to the lowest low of the
last 10 days, calling this quantity our preliminary short stop.
Finally, use the lowest value of the preliminary short stop over the
last 20 days as the actual stop for short trades.

Chande goes on to suggest experimenting with the multiplier and the
time periods to suit the stop to your trading vehicle and style.

I kept Chande's terminology, so you can easily verify my coding.

As to whether one is above or below the other, I would say it is not
relevant because only one can apply at a time. The point is to have a
stop that follows the trend but strikes a balance between being close
enough that you don't take large losses yet far enough away that you
don't get bounced out too easily.  There are several ways to define a
trend and you could write code to switch between the two.  That would
not be very different from Andrew Abraham's "Trading the Trend" (TASC
09/1998).

====================================================================
On Thu, 28 Jun 2001 19:48:04 -0400, you wrote:

> Can someone direct me to the publication that details the Chandre & Krolls Volatility Stop and its usage.
> 
> Thanks,
> 
> Jim Barone