You are on page 1of 4

STRATEGIES

Wide Range Day –


A System for Many Markets

If today’s daily range is more than yesterday’s, it is a clear signal to traders


that it could become a Wide Range Day (WRD) – days on which it is easiest
to earn money in the markets.

The Concept WRD chart study for TradeStation:


The high to low range of a WRD is clearly wider than the average
trading range. These days are marked by very active trading, the If (high-low) > (high[1]-low[1]) then PlotPaintBar(High, Low, Open, Close)
triggering of many important stops that therefore lead to an increased
volume. Chances also increase that a strong trend will emerge from a WRD chart study for TradeSignal:
WRD with prices ultimately consolidating at new levels. There are
trading systems that try to capture this effect by adding or subtracting If (high-low) > (high[1]-low[1]) then drawcandlestick(o,h,l,c)
a certain amount from the daily and then open using these levels as
entries and exits. The entry/exit levels are usually defined as a certain In Figure 1, WRDs are displayed as candlesticks in a chart of the
percentage of the average market range. Tony Crabel’s Opening-Range- DAX Future. Not all of the WRDs closed on their extremes, but these
Breakout System is a popular example. comparatively short candles are contrasted by the long WRDs in the
The trading system introduced in this article measures the high- middle of May.
low movement of prices as the trading day progresses, providing a
successful entry technique for a wide variety of markets. Its aim is to Entry
hold positions until the end of the day utilising as much of the daily The system attempts to utilise the tendency of an extreme closing
trend as possible. price by opening a position on a potential WRD as it unfolds in the
A Wide Range Day is easy to identify after it has happened. For direction of the dominant trend and holding it through the session’s
our system, a WRD simply means today’s range must be greater than close. It is a purely intraday system and does not trade overnight.
the previous day’s range. This simplifies programming because it is The tendency of prices to close at the extremes of a WRD can be
easier to calculate the previous day’s range as opposed to having to observed in many different securities. So by all means, test the system
use Average True Range. in a wide variety of markets. By coupling a money management
A Wide Range Day chart study can be drawn on daily charts using approach suited for each individual market, you can create a diversified
the following code: system portfolio based on just one trading concept.

32 September 2006 www.traders-mag.com


other direction) the system could potentially cause heavy losses. Even
F1) Wide Range Days in the DAX Future
though historical tests of the Bund Future, DAX future, and the EUR/
EUR
6300 USD indicate that this has never occurred, the possibility of its
6200 occurrence should be eliminated right from the start.
6100
If the position is not stopped out, the system acts on the original
6000
5900
premise of a Wide Range Day and does not close the trade until the
5800 end of the day. This guarantees the chance of participating in an
5700 extensive favourable move whilst avoiding damaging trades if the
5600
market remains within a range.
5500
5400
5300
Stops and Filters
5200 The first stop is placed at the same level as a trade in the opposite
5100 direction would be opened. This guarantees that any one trade cannot
May June
lose more than the value of the previous day’s range. The maximum
The daily chart shows WRDs as candlesticks which demonstrate a wider total risk on any one day is thus 2 fold more than the previous day’s
range than the previous day. These days often close near their extremes,
range. This is still substantial risk. Therefore, the system uses an additional
thus offering an ideal time point for exiting trades.
stop to reduce risk further.
Source: Tradesignal
A second look at Figure 1 reveals another characteristic of WRDs.
Not only do they close near their daily extremes, but also they very
The essence of the system is recognising a potential WRD. The seldom move far from the day’s open in the opposite direction of the
same rules used for displaying WRDs on a chart are used for the system daily trend. Thus, the wick of the candle is usually short on both sides
as well; when the current day’s range stretches beyond the range of in relation to the candle’s size. This tendency can be utilised for an
the previous day, a Wide Range Day is confirmed. effective stop.
On a daily chart you cannot tell exactly when the range of the The system only allows trades if, prior to the trade signal, the
current bar becomes bigger than the previous day’s range. However, market has not moved more in the opposite direction than an amount
on an intraday chart you can calculate it on every bar and display it equal to the previous day’s range. If that were the case it would be
accordingly. shown by a candle with a comparatively long wick. The system takes
A 15- to 30-minute chart is best-suited for this purpose. Shorter this into consideration by only allowing bullish signals that occur
time scales increase the number of data points without displaying above the daily open. Respectively, bearish signals are only allowed
market action more accurately. If on the other hand you choose a below the daily open. As soon as prices fall by more than an amount
wider time scale, for example an hourly chart, you cannot set stops as equal to the previous day’s range, the long entry point would end up
tightly or precisely as needed, which can also cause misleading test below the opening price thus voiding itself. It is calculated as lowest
results. low + the previous day’s range.
The system adds the previous day’s high-low range to the present Simultaneously the opening price is used as a stop level. Long
day’s lowest low resulting in a price level that signals the existence of positions can only be opened above the day’s opening price and thus
a bullish WRD when broken through to the upside (= today’s high-
low range is greater than yesterday’s). Similarly, the system subtracts
the previous day’s range from the current day’s highest high resulting F2) System Construction
in the price level for a short trade entry. As soon as a breakout occurs EUR

through one of the levels, the range of the current day is confirmed as Intraday low + range of the last 6080
6060
greater than the previous day’s, thus indicating the presence of a WRD.
6040
Figure 2 details the process. The previous day’s high-low range is 6020
Range of the day
added to the current day’s low and re-calculated when a lower low is 6000
registered. The green line is the result. If prices breakout though this 5980
5960
line, a buy signal is generated. The reverse applies to the short side.
5940
Every time prices break through one of the two lines an entry signal Intraday high - range of the last 5920
is received. In order to prevent volatile back and forth market phases 5900

from generating a series of failure signals as prices ping pong between 30 10:00 12:00 14:00 16:00 18:00 20:00 31 10:00 12:00 14:00 16:00 18:00 20:00 Apr

the two levels, the system limits trading to one position per day per The range of the day is measured from the highest intraday high to the
direction. If you have already received a long signal that resulted in a lowest intraday low. On the following day, this range is added to the
loss, the system will no longer generate a long signal, but can still intraday low (green line) and subtracted from the intraday high (red line).
generate a short signal. These levels are calculated every 15 minutes and adjusted if there is a new
intraday high or low. A WRD is confirmed when one of the lines is broken
This approach is advantageous from the point of view of through.
protecting against risk. If you were to trade several times during the Source: Tradesignal
day in the same direction (only to be stopped out and reversed in the

33
STRATEGIES

However, do not be confused by the positive statistics of a system


F3) The System at Work
for a market. Conclusions about stability can only be made after testing
EUR
in other markets. Figure 1 showed WRDs in the DAX future,
0
5200
End of the session X 5180
subsequently the system should work with this market as well.
Long Entry Level
5160 This is shown in Figure 5. Within a test period of 2 ½ years, trading
5140 one contract attained a gain of 32,300 Euros. The profit factor again
5120 was 1.6. Tests using the Bund Future showed similar positive results.
Long Entry 5100
1
5080
Initial Stop at the day’s opening price
5060
Practical Application
Long Exit / 5040 The system is relatively easy to execute. Long entry levels are adjusted
Short Entry Level
5020 when a new low has been reached leaving enough time for adjusting
14:00 15:00 16:00 17:00 18:00 19:00 4 10:00 11:00 12:00 13:00 14:00 15:00 16:00 17:00 18:00 19:00 5
orders. Even when the system is based on 15-minute data you do not
The penetration of the long entry mark (lowest intraday low + previous have to adjust orders every 15 minutes.
day’s range) signals a long entry. The initial stop is placed at the current Use entries exactly the same way the system does, with stops that
day’s opening price. As soon and the short entry mark (highest intraday
automatically exit you from the market. This ensures that you are
high minus previous day’s range) rises above the opening price where it
also serves as the stop level. The position is closed one hour before the secured by a stop whenever you are in the market.
end of the session. The daily risk is small when compared to the risk of a system failure.
Source: Tradesignal Even if the trading idea seems grounded and the system has
functioned well historically, it is no guarantee it will perform the same
way in the future. Markets change and historical data can fool you.
are stopped out if prices fall back to the opening level. Short trades Additional problems in actual application could be experienced so
are handled in the same way respectively. that actual performance is much worse than theoretical results. In
Figure 3 shows how this looks in practice. After 11:00 am, prices order to use the system with a reasonable opportunity-to-risk ratio
move up through the long stop level and a position is taken. The initial you have to create a money management plan that includes a system
stop is placed at the day’s opening price (yellow line). A short position shut down parameter when a certain amount of funds have been lost.
would be opened only after prices reach the brown line. After 5:00 For example, that could be two times the maximal drawdown attained
pm the brown line was moved above the opening price. If the market in historical testing. For the system shown in Figure 4 it would mean a
would turn the long position it would be stopped out at this level, but system shut down takes place as soon a drawdown of more than 7,000
not reversed to the short side (short only below the daily opening). euros from the equity line all-time-high occurs. If that happens, it is a
clear sign the system is not working as expected. Of course, it is
Exiting Session End important to follow any systems actual equity developments in order
Originally, the system closed the position at the end of the session. to stop trading immediately if any system error occurred.
However, this can be problematic in actual trading. Theoretically, you Since the system performs in a number of markets when tested it
have to close the position on the last traded price of the day. In reality, seems reasonable to consider investing in some of these markets.
you have to try to guess the closing price a few minutes before the Minimising risk would require close observation of each individual
bell and try to trade accordingly. This leads to unavoidable slippage market as well as the performance of the system portfolio. Figure 5
and you will never attain the theoretical performance of the system
in real trading. In order to avoid this problem the system closes the
position one hour before the theoretical session close. Back tests show F4) Equity Curve Trading 100,000 EUR/USD
this does not lead to any significant change in performance, but wins CEquity
an extra hour to trade the theoretical exit price provided by the system. 30050

25000
Performance 20000
The system can be used in many markets. It was originally developed 15000
for trading the Euro against the U.S. dollar. In order to avoid having to
10000
trade this market 24 hours a day, you can shorten the trading hours in
5000
the chart software to 8:00 AM to 10:00 PM so that after hours trading
-250
is not shown. Additionally, the day’s range is calculated using only
-5000
this time frame, which of course deviates from the day chart. However, Apr Jun Aug Oct 04 Mar MayJulAug Oct 05 Mar MayJul Aug Oct 06 Mar May
this does not disturb actual trading as shown in the historical
performance chart for this currency pair in Figure 4. The system generated consistent performance during 2003. A profit of
34,670 Euros was attained with 446 trades. The average profit was thus
Trading 100,000 EUR/USD within a test period of three years and
7.7 pips/trade. The biggest daily loss was 88 pips. The performance figures
449 trades realised a gain of 34,670 Euros. The average trade was 7.7 for the long and short side are nearly equal.
pips and the profit factor was 1.6, showing a positive expectation for Source: Tradesignal
the system.

34 September 2006 www.traders-mag.com


trendless days. A simple exit at the end of the day and an adjustable
F5) System Performance Using One DAX Future
stop prevent any unnecessary risks. The concept behind this system
CEquity
was purposely kept simple for this article. Using this as a foundation,
35000
32925 you might improve the system in simple ways. For instance, does it
30000
25000
make sense to enter long trades only when the market is in a long-
20000 term upwards trend or does the system profit better on negative days
15000 during these phases? How does the system perform when the open –
10000 close range is used, instead of the high-low range? Experiment as well
5000
with a fixed fractional based money management approach (Kelly
0
-2000
-5000
Formula, optimal f). In this way you automatically increase position
-10000 size in the markets in which the system works well, while not
04 Mar AprMayJun Jul Aug Sep Oct Nov 05 MarApr MayJun Jul Aug Sep Oct Nov Dec 06 Feb Mar Apr May Jun Jul
eliminating bad performing markets from the portfolio too early.
Good performance was also attained with the DAX Future. Trading one
contract attained a profit of 32,325 Euros; the average profit per trade was
4 points.
Source: Tradesignal
Philipp Kahler
shows the performance of a portfolio of three markets using the WRD Philipp Kahler studied electrical
system and position sizes of 100,000 EUR/USD, 1 DAX Future and 8 engineering and works in the
Bund Futures. The worst-case total portfolio risk of about 30,000 Euros finance for eight years. After working
is contrasted by an equally high yearly profit potential. as proprietary trader at Bank-
gesellschaft Berlin he now developes
Summary and coaches quantitative portfolios
The Wide Range Day system is easy to trade on an intraday basis. The for institutions. He lives in Graz and
system presents an opportunity to earn money on days in which the Berlin, and he can be contacted at
market undergoes strong moves, while avoiding overtrading on http://quanttrader.com/

“Who Says You Can’t Get Quality


Free Trading Information
That Brings Results?”
Larry Swing CEO
Larry Swing www.mrswing.com of mrswing.com

W hy do over 139 000 traders rely on MrSwing See what others are saying about MrSwing:

everyday for trading advice? One answer... I’d like to thank you for putting such a great site on the web. I have learned more
about short term trading from your site than from all the other’s combined!
Roger Uglow , UK
RESULTS
Your selections look every bit as good if not better than
We cover every nit and cranny of day and swing trading in our FREE daily subcriptions sites that charge up to $100/month...
“nuggets of wisdom” articles Paul Bondy , USA

Starting with beginner to advanced technical analysis, money management, system Since I found your web site and starting trading your guide lines I am up over
development, statistics, psychology and the art of using leverage. You’ll receive $5000.00 in one month.That is a big change from what I usually make.
education on trading stocks, futures and currencies. But that’s not all...you’ll also John F. Famularo , USA
get free powerful stock and options picks.
Thanks for your help, four years of research and
Best of all...you’ll be able to take advantage of our FREE archived article database of 500 web sites later, this is one of the most useful!
all our education. Plus, you can participate in our trading chatroom and look up all Jon Sproule , Canada
your stocks with our dynamic interactive charts that you can customise... all totally
FREE. I should be paying you!
Paul J. Krupin, USA
And that’s not all... you’ll also have a FREE download of the MrSwing
Swingtracker software specifically designed for swing trading. You’ll have LIVE First of all I would like to congratulate you for the top quality web site of yours.
interday charts plus our proven swing trading scans. Or if you prefer, you’ll be able I have become a swing trader through visiting your web site.
to create your own, you’ll have everything you need to find powerful trade setups. Felix Bamba Kemper, USA

So if your trading needs a boost, come check us out... remember, it’s FREE! Go to www.mrswing.com/t3
NOW, and begin to learn to trade with success

35

You might also like