Stocks Commodities PDF
Stocks Commodities PDF
THE POWER OF
GROWTH STOCKS
Use this power calculation
to measure the strength of
a growth stock 8
TRUNCATED
INDICATORS
Improve how well cycle
indicators reflect price 20
INTERVIEW
Jay Kaeppel 30
CHASING VOLATILITY
Beware the fear of
missing out 38
JULY 2020
Take Control of Your Trading with the
Professional Traders’ Starter Kit ™
Stocks & Commodities magazine
5
only
$
Digital Working
Edition Money
Starting at
$
0
Commissions
on US listed
1
stocks and ETFs
Member - NYSE, FINRA, SIPC – *Interactive Brokers rated #1, Best Online Broker according to Barron’s Best Online Brokers Survey
of 2020: February 21, 2020. For more information see, ibkr.com/info - Barron’s is a registered trademark of Dow Jones & Co. Inc.
[1] IBKR Lite provides commission-free trades in US exchange-listed stocks and ETFs routed to select market makers. IBKR may
charge non-commission related fees. For more information, see ibkr.com/liteinfo
07-IB20-1334CH1286
CONTENTS JULY 2020, VOLUME 38 NUMBER 8
$
1.50 per contract for futures
and futures options trades
The standard $1.50 price does not include customary National Futures Association (NFA) and exchange fees. Additional fees may apply at some foreign exchanges. NFA and exchange fees may
increase or decrease depending on the rates set by NFA or by the various futures exchanges, as applicable. Additional market data fees may apply at some futures exchanges.
Futures trading offered and positions held through Charles Schwab Futures, Inc., a separate but affiliated company of Charles Schwab & Co., Inc. Both are subsidiaries of The Charles Schwab
Corporation. Futures trading involves substantial risk and is not suitable for all investors. Please read “Risk Disclosure Statement for Futures and Options.”
©2020 Charles Schwab & Co., Inc. All rights reserved. Member SIPC. (0918-8HEU)
The editors of S&C invite readers to submit their opinions and information on subjects J(0),
K(0),
relating to technical analysis and this magazine. This column is our means of communi- TempPrice(0),
cation with our readers. Is there something you would like to know more (or less) about? TempRank(0),
Tell us about it. Without a source of new ideas and subjects coming from our readers, this Sum(0),
magazine would not exist. Signal(0);
Email your correspondence to [email protected] or address your correspondence Arrays:
to: Editor, Stocks & Commodities, 4757 California Ave. SW, Seattle, WA 98116-4499. All PriceArray[50](0),
letters become the property of Technical Analysis, Inc. Letter-writers must include their full Rank[50](0);
name and address for verification. Letters may be edited for length or clarity. The opinions For count = 1 to Length Begin
expressed in this column do not necessarily represent those of the magazine.—Editor PriceArray[count] = Close[count - 1];
Rank[count] = count;
End;
For K = 1 to Length Begin
CORRELATION AS A TREND INDICATOR Nonetheless, for the sheer fun of it, I count = Length + 1 - K;
Editor, coded the popular Spearman ranking For J = 1 to Length - count Begin
John Ehlers’ May correlation equation as an indicator If PriceArray[J + 1] < PriceArray[J]
Then Begin
2 0 2 0 a r t icle, using a bubble sort to do the price TempPrice = PriceArray[J];
“Correlation As A ranking. The code listing provides the TempRank = Rank[J];
Trend Indicator,” EasyLanguage for this indicator. PriceArray[J] = PriceArray[J + 1];
Rank[J] = Rank[J + 1];
was straightfor- The chart in Figure 1 shows the
PriceArray[J + 1] = TempPrice;
ward and easy to comparison of the original Pearson Rank[J + 1] = TempRank;
follow. However, correlation and the shorthand Spear- End;
when I went to look man ranking indicator, using a 20-bar End;
End;
up more details about the Spearman correlation period in both cases. Obvi- Sum = 0;
correlation formula, I found that when ously, the Pearson correlation produces For count = 1 to Length Begin
one of the variables is linear, like in this a smoother indicator on an apples-to- Sum = Sum + (count -
Rank[count])*(count - Rank[count]);
case, it is really the Pearson correlation, apples basis. An alternative interpreta- End;
and this is the formula used for the code tion could be that the Spearman ranking Signal = 2*(.5 - (1 - 6*Sum /
given in the article. The Spearman cor- indicator is more responsive to nonlinear (Length*(Length*Length - 1))));
relation formula is different. It measures price moves. Both approaches have a
Plot1(Signal);
monotonic relationships. It uses rank finite impulse response, and so the group Plot2(0);
order of raw variable values to come up delay of both is approximately half the
with its results rather than actual raw correlation period.
variable values, like the closes. Just to mention it, the Kendall correla-
Code listing: Spearman Rank Indicator
I would appreciate it if John Ehlers { tion is another type of ranking correla-
could expand and contrast between the Spearman Rank Indicator tion but it has no particular advantage
two methods, how significant the differ- (C) 2013-2020 John F. Ehlers as a technical indicator.
}
ence in results might be for the same set
of raw data, and which would be better Inputs: Editor’s note: Subscribers can find this
for our use. It obviously is easier to use Length(20); code in the article code section of our
raw data directly than to have to rank it website, Traders.com.
Vars:
first. But I’m wondering if the ranked data count(0),
might give a smoother indicator? Would
the indicator lag be the same?
Don Kraska
W
stock with zero growth has a P/E of 8.5 and the price
hen we think of growth stocks, we think of is equal to 8.5 times earnings. This lower bound of
stocks that consistently trend in price and 8.5 is what Graham deduced from the market; we
that outperform the market average. They will not further investigate this here.
usually pay no or next to no dividend, as We can produce a five-year forecast of price by tak-
they save up earnings to expand their business ventures ing the five-year growth forecast (G) averaged over all
through development or aggressively buying out other analysts covering the stock and the five-year earnings
businesses to consolidate or vertically integrate. By forecast (E) by linearly interpolating between last year,
investing in this type of stock, you expect to profit current year, and next year earnings expectations.
from above-average market returns through price Calculating this across a set of ~2,253 US stocks, we
appreciation only. obtain price forecasts and can therefore calculate the
Benjamin Graham’s 1962 book Security Analysis annualized % returns for all stocks, which we will
contains a chapter titled “Newer Methods For Valuing subsequently just refer to as “growth.”
Growth Stocks” that offered a method to forecast the
annualized growth in stock price based on its earn- Power
ings and growth expectations. This gives us a good Growth stocks trend more than non-growth stocks.
starting point to categorize growth stocks, but how If the stock price is constant, there is no trend and no
do you verify the growth using the stock price alone? growth. If the trend is a straight line, we would expect
Can we prove that Graham’s formula corresponds to the trend to measure a constant. In physics, there is a
high-growth stocks? concept called power, which in digital signal process-
In this article, we will derive such a measure. We ing is applied to discrete signals. There, the power for
will present Graham’s formula, derive a formula to periodic signals is defined as the average energy over
measure the growth/trend, and finally, we will show a period and is given by this formula:
some results of how to improve upon Graham’s for-
1 N–1
mula using a new indicator, which we call the power
of a stock.
Power N =
N n=0 n Σ ⎢P ⎥
2
Equation 2
Here, G is the growth forecast in percentage points to an initial price Pj-N+1 (N-1 days ago) and normalize
the signal by it. We therefore define a moving window of power signal processing,
(Power j) at each step in time j: and their decom-
position into signal FIGURE 3: SIGNAL & NOISE POWER RATIO, LINEAR
SIGNAL. This shows the signal and noise power ratio for
1 and noise. Figure 3 linearly increasing signals of slope 5, 10, and 20.
2
N–1
Pj–n
Power jN =
N Σ n=0 Pj–N+1 Equation 3 shows the result of
the power calculation for the case of linearly increasing func-
where Pj-0 is the last value of each moving window. tions with various slopes (5,10,20) plus some random noise
Next, we split the stock price into two components, signal of amplitude 0.1%. Figure 5 shows sinusoidal functions with
and noise: increasing amplitude (5,10,20) plus some random noise of
amplitude 0.1%. We have scaled power by a threshold, which
Price = Signal + Noise Equation 4 could be based off the intraday volatility, for example; its use
will become apparent later. Here, it is simply taken to be 0.1%
and define the signal to be the N-day moving average: of the signal, that is, the random noise. We also take the square
root since we want to arrive at a scale similar to the stock price
Signal = MA(P , N) = MA N Equation 5 again. You see the power ratio approaching a limit for the linear
signal and oscillating for the sinusoidal signal. You also notice
and define the noise to be the difference between the price that in all cases, the higher the amplitude or slope of the signal,
and signal: the higher the power measured is.
In Figure 4 and Figure 6 you see charts of the power ra-
Noise = P – MA(P , N) Equation 6 tios and actual values of signal versus noise. For the linear
signal, you see a linearly increasing signal because it is just
Hence, we can calculate the power of the signal: the moving average and you see the noise is constant. On the
right of Figure 4 you see both the signal and noise power ratio
MA j–n
N
1
2
N–1
PowerOfSignal Nj =
N Σ n=0 Pj–N+1
Equation 7
Pj–n – MA j–n
N
1
2
N–1
PowerOfNoise Nj =
N Σ n=0 Pj–N+1 Equation 8
We’ll look at two examples: a linear signal and a sinusoidal FIGURE 4: SIGNAL VS. NOISE, LINEAR SIGNAL. Here’s an example plot of signal
signal. Figures 1 and 2 show stem plots, as is usual in digital versus noise and the power ratios for a linear signal.
3.00 MA(50)
Sharpe Ratio
2.00
MA(20)
1.00
y = 0.0456x - 0.4057
R2 = 0.0034
MA(100)
-
(1.00)
(2.00)
(3.00)
0 5 10 15 20 25
Power Ratio
Signal 20MA Noise 20MA Linear (Signal 20MA) Linear (Noise 20MA)
Signal 50MA Noise 50MA Linear (Signal 50MA Linear (Noise 50MA)
Signal 100MA Noise 100MA Linear (Signal 100MA) Linear (Noise 100MA)
FIGURE 5: SIGNAL & NOISE POWER RATIO, SINUSOIDAL FIGURE 7: SHARPE RATIO AND POWER RATIOS. Here is a plot of the Sharpe ratio versus power ratios
SIGNAL. This shows a signal and noise power ratio for a sinu- for the 20-day, 50-day, and 100-day moving average power windows. Signal power ratios are colored in
soidal signal of amplitude 5, 10, and 20. grayscale and noise power ratios are colored in shades of brown, ranging from lightest (20) to darkest
(100).
are decreasing along a gentle slope (from top right to bottom We calculate the power ratios dividing by a threshold power,
left) as time passes. Also note that with a decreasing slope of which is defined by Wilder’s ATR (average true range), which
the linear signal, the signal & noise power ratio itself is also in turn is normalized by the last significant close (SIC), similar
decreasing. Figure 6 is a similar plot for the sinusoidal signal; to what we have done with the stock price in equation 3.
on the left you see signal and noise are tracing an ellipsoidal For a generic trend-following strategy to work best, you would
curve in space, as you would expect. On the right you see the select liquid names with high volume, preferably big cap and
noise power ratio staying fairly constant and the signal power larger stocks (market cap >= 300 bn USD), which is what we
ratio oscillating in a range horizontally. do here also. In addition, we also only look at stocks where
Graham’s formula (equation 1) forecasts a positive five-year
Results growth (>0). In order to evaluate the performance of this strategy,
We can apply J. Welles Wilder’s trend-following system (known we calculate the P&L and Sharpe ratio across all results using
as his Volatility System) to the set of ~2,253 US stocks over 100 three varying windows for the power calculation (20, 50, and
trading days and evaluate the performance of them with respect 100). They are plotted in Figure 7 depicting both the Sharpe
to the growth forecasts using Graham’s formula in equation 1. ratio versus the signal as well as the noise power ratio.
Plotting the linear regressions on top, there are several things
to note. All the linear regressions have a positive slope and
the 50-day moving average has the steepest slope of them all.
Higher power ratios lead to Furthermore, the slopes of the noise power ratios are steeper
drastically improved returns than the signal power ratios. The data turns positive around 2.5
for the noise power ratio and around 7.5 for the signal power
for all ranges of power ratio. Furthermore, we have Sharpe ratios that are largely
calculations. in excess of 1 and knowing that a buy-and-hold of the S&P
500 has a Sharpe ratio of around 0.5, this outperformance is
quite impressive.
12 • July 2020 • Technical Analysis of Stocks & Commodities
before the big-, mid-, and small caps do. This lets us
believe that this power indicator is not only useful
in measuring and comparing “growth stocks,” but
that it can also give us insight into overall market
breadth and provides us a measure of the strength
of a trend overall.
Conclusion
In this article, we have shown that Benjamin Gra-
ham’s growth estimate for stocks can be improved
by calculating the power of a stock. Similar to the
power of a signal in DSP, it represents the amount
of displacement per unit time. Calculating a normal-
ized average energy over a period, we have split the
stock price into a signal and noise part. We have
compared the power calculation over a number of
FIGURE 8: POWER RATIO, MARKET-CAP WEIGHTED. This shows the market-cap weighted various ranges and signals, and have applied the
power ratio for the 20-, 50-, and 100-day moving average and the S&P 500. results to a generic trend-following algorithm such as
Wilder’s Volatility System from 1978. We conclude
that higher power ratios lead to drastically improved
returns for all ranges of power calculations and note
that Sharpe ratios in excess of 1.0 can be achieved,
which strongly outperform a buy-and-hold strategy.
We have also suggested a useful application as an
overall market power indicator when market cap
weighting all power signals across all names as a
whole or by market cap group.
If
by Thomas Bulkowski explain how well the swing rule works for shorter-term trades
(smaller swings).
you haven’t heard of the “swing rule,” you’re
not alone. I found the technique described in What to look for
the 1988 book Stan Weinstein’s Secrets For In his book, Weinstein gives guidance on what to look for. He
Profiting In Bull And Bear Markets. I’ll describe warns the technique “doesn’t appear often.” Begin by finding
what the swing rule is, test how it works, see how a peak “before an important decline sets in and subtract the
performance has changed over the decades, and next low price from it.” By next low price he means the low
optimize the rule. at valley B (refer to Figure 1).
The clearest way to describe the rule is by example. Figure How deep should the drop be? He doesn’t say but provides
1 shows a chart of how the rule should work. My computer three examples. The first stock shows a drop of 37%, the
found this example, and it’s included in the test results I’ll second measures 42%, and the last stock sees price plummet
SHUTTERSTOCKPROFESSIONAL/SHUTTERSTOCK
describe later. by 65%. In other words, we should look for a major decline.
The swing from A to B should approximate the rise from A The drop from A to B in Figure 1 measures 39%.
to C. If we plug in the numbers, the high at A is at 233.47, the After we find an important high-low swing, subtract the low
low at B is 142.00, and C peaks at 327.85. Compute the height from the high, and add the result to the high to get the swing
by subtracting the price of B from A. Add that result to the rule price target. That is, C=A-B+A.
high at A and we get the computed target of 324.94. Peak C How often does the swing rule work? He writes, “While
exceeds that by just a few points before the stock rounds over every swing-rule projection won’t turn out to be as perfect as
and heads lower over worries about Chinese production delays these [his three examples], the overwhelming majority will be
14 • July 2020 • Technical Analysis of Stocks & Commodities
TRADING TECHNIQUES
surprisingly on target.”
C
That doesn’t tell me what I
want to know, so we’ll have to
find the answer ourselves. It’s
also possible that overwhelm-
ing majority applied in the
1980s, but no longer does. A
We’ll see.
For trading using the swing
rule, he suggests selling a
portion of your position at
the swing rule target and
letting a stop order cash out
of the rest.
TOM BULKOWSKI
More examples B
I’ll discuss two more exam-
ples, beginning with Figure 2. FIGURE 1: THE SWING RULE. Point C is found using the formula C=A-B+A.
The high at A is 193.47, the
low at B is 132.60, for a drop
of 60.87 (or 31%). Adding the
AB swing to A gives a target
of 254.34, which I show as
the horizontal red line. The Swing Rule Target
minor high to the left of C is
just under the target and the C
minor high after C sees price
rise above the line. The stock
hits an air pocket and drops A
almost 11%, to 232.
What happens next? The
stock recovers and makes a
new high, soaring well above
the target. In this example,
the swing rule worked, and B
allowed a trader to exit before FIGURE 2: EXAMPLE OF SWING RULE APPLIED. This stock turns at the target, drops 11%, but recovers to make a new
an 11% decline. However, the high.
stock quickly recovered and
soared 36%. The notion of D
selling a portion of the trade
at the swing rule target may Target
have worked well for a trader C
holding onto the rest.
Figure 3 shows another ex-
ample my computer program
found. The high at A is 28.97,
the low at B is 23.05, for a A
drop of 5.92 or 20%. That
swing would place the target
at 34.89. The stock climbs to
34.70 at C, just short of the
target.
You will notice that my
computer didn’t use peak D in B
the computation (in the swing FIGURE 3: ANOTHER EXAMPLE OF SWING RULE APPLIED. This stock falls just shy of the target at C, using the AB swing
down to B). Will the swing for the projection, not peak DB.
Optimization: Sort
the dip
Figure 6 shows what I found
when I sorted the size of the
dip, in 10 percentage point
ranges. I don’t know what size
Weinstein used. I assume his FIGURE 7: SMALL-SIZE SWINGS. The swing rule works about half the time for small retraces.
dips were as large as the ones
he showed in his book (over 30%). They may not be.
For short-term (small swings) swing traders, the swing
rule works just over half the time (53%). For example, Figure
7 shows the swing rule for a dip that measures 6% from the
I found that 74% of the
high at A to the low at B. The high at A is 42.86 and the low stocks showed success
at B is 40.12, giving a target of 45.60. The peak at C reaches when using the swing rule.
a high of 45.58 or just two cents short of the target. I call that
a direct hit, but the stock continues higher and takes out the
target in any case two weeks later.
Figure 6 shows tests pulled from a pool of 21,120 samples. A to B. In other words, it takes about twice as long to recover
The swing rule saw price drop a penny below B 3,114 times from the dip (the move from the low at B to return to the price
or 47% of the 6,608 samples that qualified. That means the of A) and twice as long to reach the target (the rise from A to
rule worked the other 53% of the time. I didn’t check if the C) as it does for price to drop from A to B.
stock continued to make a higher high or if it changed trend The swing rule works at least half the time and it works
from up to down. better for larger dips than smaller ones. Because this test was
Read the remainder of the table the same way. Notice that done using a computer algorithm, adding your trading skills
as the size of the dip (10% to 20%, 20% to 30%, and so on) to the mix might improve the swing rule results.
gets larger, the success rate increases. Also notice that the last For traders, the swing rule might be a valuable tool to help
two rows have a wider range. The 50% to 100% row, which put money into your trading account.
is a huge drop, has only 424 samples. That may explain why
the success rate is so high. STOCKS & COMMODITIES Contributing Writer Thomas
The last row shows the number of failures for all sized dips: Bulkowski is a private investor and trader with almost 40
43%, leaving 57% as winners. years of market experience and considered by some to be a
Using the range provided by Weinstein’s three charts in leading expert on chart patterns. He is a best-selling author
his book, I plugged a 37% to 65% range into my spreadsheet of several books including Encyclopedia Of Chart Patterns,
and found that 74% of the stocks showed success when using Second Edition. His website and blog, www.thepatternsite.
the swing rule. com, have more than 700 articles of free information dedi-
cated to price pattern research.
That’s a wrap
Weinstein’s swing rule measures the peak-to-valley dip and Further reading
adds the difference to the peak to get a target. Traders can Weinstein, Stan [1988]. Stan Weinstein’s Secrets for Profiting
use the target as a method of determining when price might In Bull And Bear Markets, McGraw Hill.
peak. The stock may not make a lasting turn at the peak and Bulkowski, Thomas [2005]. Encyclopedia Of Chart Patterns,
it can take a long time to not only recover from the dip but Second Edition, John Wiley & Sons.
also to reach the target. ‡Tom Bulkowski
A check of the time for a stock to rise from the bottom of ‡See Editorial Resource Index
the dip to the target took 4.1 times as long as the drop from
July 2020 • Technical Analysis of Stocks & Commodities • 17
FUTURES FOR YOU
INSIDE THE FUTURES WORLD
Want to find out how the futures markets really work? Carley Garner is the senior
strategist for DeCarley Trading, a division of Zaner, where she also works as a
broker. She has written four books on futures and options trading, with the latest
being a new edition of her book A Trader’s First Book On Commodities (third
edition, October 2017) as well as Higher Probability Commodity Trading (July
2016). Garner also authors widely distributed e-newsletters; for a free subscrip-
tion, visit www.DeCarleyTrading.com. To submit a question, email her at info@
carleygarnertrading.com or via www.DeCarleyTrading.com. Selected questions Carley Garner
will appear in a future issue of S&C.
A STRATEGY FOR VOLATILE FUTURES: prospects of unlimited profits and are merely needs to be right within a $10.00
THE OPTION BUTTERFLY willing to accept the scenario in which margin of error.
How can retail traders get into markets they are too right regarding direction and The cost of the spread would be
with high volatility and margin require- lose money. Additionally, when trading roughly 60 cents or $600 because each
ments? spreads, profits and losses occur at a penny is worth $10 to an oil trader.
In the aftermath of the May crude oil slower pace, which causes frustration The cost can be figured by adding the
futures contract blow-up in April 2020 if the underlying futures market makes premium paid for the two long options,
which temporarily drove prices into a hard and fast move in the desired di- then subtracting the premium collected
negative territory to the tune of $40.00 rection. Nevertheless, beggars can’t be for the two short calls. There is little, to
per barrel, retail traders were left with choosers; those looking to play in the no, margin required for an option but-
few “options” for oil speculation. Dur- oil market in mid-2020 without risking terfly if the strike prices of the wings
ing this time, the margin requirements their shirts or their marriage could have are equidistant.
needed to buy or sell futures contracts found solace in the butterfly strategy. The premium paid for the spread, $600
nearly tripled but, adding an additional Let’s take a look at an example. in this example, is the maximum risk to
layer of deterrence, most commodity A trader who believes oil would be the trader. If at expiration the price of
brokerages mitigated their risk by forbid- near $35.00 at the August option expira- oil was below $30.00, the spread would
ding clients from trading the front-month tion, or at least above $30.00 and below expire worthless, leaving the trader with
contract and requiring additional margin $40.00, could construct a call butterfly a full $600 loss plus any transaction costs
to initiate positions in the back months. spread by purchasing an August crude paid. If the trader was too right in the
Further, weeks of excessive volatility left oil $30.00 call, selling two of the $35.00 direction and the price of oil was above
the options markets grossly overpriced, calls and then buying the $40.00 call. In $40.00 at expiration, all of the options
shifting the odds of success for option essence, this trader need not pinpoint the
buyers toward impossible. In such an precise price of crude at expiration, he Continued on page 23
environment, there is
a better way to gain
exposure with higher
probabilities of profit
and low and limited risk.
Does this sound too good
to be true? It isn’t. Option
butterflies fit the bill.
An option butterfly
is a limited-risk trade
intended to profit if
the underlying futures
price settles within a
predefined range. Of
course, there are al-
ways opportunity costs
that come with low-risk
ventures; in the case
of an option butterfly,
traders are giving up the FIGURE 1: EXAMPLE CALL BUTTERFLY SPREAD
18 • July 2020 • Technical Analysis of Stocks & Commodities
E ND
ATT
O STREAMING LIVE
EET
FR
VIRTUAL EVENTS JUNE 10-12, 2020
ALEXANDER ELDER KEITH FITZ-GERALD DENNIS GARTMAN RICK RULE JEFFREY SAUT TOM McCLELLAN LARRY PESAVENTO
The New Trading Fitz-Gerald The Gartman Sprott US Capital Wealth The McClellan Trading Tutor
for a Living Research Analytics Letter, L.C. Holdings, Inc. Planning Market Report
The American Economy in Outlook 2020: Lock & Load on the Best Profiting in Bear Markets Trading Options During the
a Post-Coronavirus World Post-Pandemic Pop Dividend & Growth Stocks with Inverse ETFs Coronavirus Market Crash
Truncated Indicators
An ideal cycle indicator is one that will help you locate and an example, I’ll show you the difference it makes, and I’ll
track cycles in price data to better anticipate price. Here is codify it for you so you can see the details of the process and
a straightforward technique for improving how accurately also implement it yourself.
a cycle indicator reflects price—including the handling of
extreme price events such as the market experienced recently. Why truncation?
Coding is provided to help you implement the technique. If you toss a rock into a lake, ripples will form. The rock may
disturb the body of water only for a minute in the grand scheme
by John F. Ehlers of things, but the ripples echo outward until they fade (or are
T
“attenuated”)—and the impact of the rock fades. But in the
he performance of some, but not all, indicators can meantime, the trail left by the ripples is noticeable, and the
be greatly enhanced by truncation. By “trunca- impact of the disturbance will distort the water.
tion,” I am referring to limiting the data range An indicator takes form by the data series on which it is
A N N TO N I A R T/ S H U T T ER S TO C K
automatically in ways that allow the indicator to based. A short disturbance in the data, like the rock in the
COLLAGE: CHRISTINE MORRISON
more accurately reflect price. water, can have an outsized impact on indicator output in the
But which indicators can be enhanced by it, time series, which is not always desirable. This is one situation
and why? In this article, I’ll tell you the type of where indicator truncation can be helpful, as I’ll describe.
indicator that can benefit from this mathematical technique, Another situation where indicator truncation is helpful
and I’ll show you a way to perform the truncation. Through has to do with the data window used for the calculation of an
20 • July 2020 • Technical Analysis of Stocks & Commodities
DIGITAL FILTERS
Finite impulse response (FIR) two bars ago, and so on. Thus, the required history goes back
Finite impulse response or FIR uses a fixed window of data to infinity. The EMA equation can be rewritten as:
and is used to calculate a point of the filter output. That window
slides across the data, and the output points are connected (Output – (1-a)*Output[1]) = a*Input
to provide the indicator. A simple moving average (SMA) is
an example of such a filter. The RSI (relative strength index) If I change the notation at let Z-1 signify one bar of delay, the
and the stochastic oscillator are examples of indicators that equation is rewritten as:
use this principle.
FIR filters and indicators can only be degraded by trunca- Output*(1 – (1-a)*Z-1) = a*Input
tion.
The ratio of output to input is the transfer response of the
Infinite impulse response (IIR) filter, and so the transfer response of the filter, H, can be
IIR stands for infinite impulse response, where the computa- written as:
tion of the filter or indicator depends on a previous calculation
of that filter. The exponential moving average (EMA), and H = a / (1 – (1-a)*Z-1)
thus the MACD, as well as other indicators, are IIR types.
Of course, the computation of an IIR filter does not extend to Just to simplify notation, let (1-a) = c. The equation then
infinity. The filter computation can only start at the beginning becomes:
of the data being used.
Therein lies the problem. The answer you get from an IIR H = a / (1 – c*Z-1)
filter will be different depending on your data length. If the
data stream is sufficiently long, the answer may be the same for The denominator of the transfer response carries the re-
all practical purposes, but it will be different nonetheless. quirement for a calculation into the infinite past. However, if
So initialization is one problem that is resolved by trun- we create an infinite series by dividing the dominator into the
cating the indicators. The memory of IIR indicators can also numerator by long division, the equation becomes:
impact performance, because a major data disturbance can
cause the transient response of the indicator to ring like a bell, H = a*(1 + c*Z-1 + c2*Z-2+ c3*Z-3 + c4*Z-4 + c5*Z-5 + . . . .
using that data disturbance in its output long after the event ...)
has occurred. This is particularly important because market
data is nonstationary, that is, the data has time variable prob- Truncation of this equation is easy, because we can just stop
ability statistics. using the higher-power terms at any power we choose. Since
IIR filters are handy for a trader because you do not have (1-a) is a number less than unity, we can estimate the desired
to accept the group delay of an FIR filter, which is typically length of the truncation by computing when the coefficients
about half the length of the filter itself. no longer have an impact on the transfer response.
I will first describe several ways to perform truncation, and The EasyLanguage code fragment to compute a truncated
then I will discuss its performance impact. EMA of a fixed length as a summation of terms is:
Output = a*Input + (1-a)*Output[1]; One of the beauties of computers is that we can just brute-
force grind through calculations without resorting to math-
where Output[1] means the filter output one bar ago and where ematical sleight-of-hand tricks. This gives us more flexibility
a is the EMA constant (less than 1). in easily truncating higher-order filters. However, it requires
Of course, the output one bar ago requires its previous output a slightly greater understanding of computer coding. In the
July 2020 • Technical Analysis of Stocks & Commodities • 21
In the sidebar “EasyLan-
guage Code For Standard And
Truncated Bandpass Filters,”
I give the EasyLanguage
code to compute a standard
bandpass filter in terms of its
center period and percent-
age bandwidth. The standard
computation as an IIR filter
uses the computed values of
the bandpass filter both one
bar ago and two bars ago. In
TRADESTATION
What’s ahead
In my February 2020 article in this
magazine, “Using Scaling Laws For The
Development Of FX Trading Models,” I
described how scaling laws can be used
to develop trading models based on the
fractal properties of financial data. In the
following sections, I will give a brief recap
of the development of scaling laws for FX
data. A more detailed description can be
found in my February 2020 article, which
is listed at the end of this article.
I will describe four scaling law equa-
tions and introduce volatility as a key
Building More Predictable Models
FX Trading Models:
allows the four scaling law equations to
collapse into two equations. Finally, I will
A Two-Dimensional
describe trading algorithms based on two-
dimensional scaling laws and show the
resultant trading model performance.
extended into two dimensions: volatility and price change thresholds. Now, us- In 1990, the first scaling law for foreign
ing two-dimensional scaling laws, an even more accurate prediction of expected exchange (FX) rate data was found. (For
returns can be made. Find out how. more on this, see the article listed in
T
SHUTTERSTOCK/COLLAGE: NIKKI MOR
〈|ΔX|〉 = C( Δt ) D
direction (up/down) in the zigzag pattern is declared when the The exponent M and C are constants for the currency
price changes by a threshold value compared to the highest pair.
or lowest price in the zigzag segment. The threshold, repre- Equation 3 can be rewritten in the log-log form as:
sented by Λ in equation 1, is a price change and is specified in
pips. The threshold Λ defines the amount of price movement
required to declare a new up or down segment in the zigzag
( )
log 〈R〉 = M log(Λ) + B Eq. 4
pattern. The number of directional changes (NDC) depends where M is the slope and B is the constant intercept for the
on the sample size S and the threshold Λ. fitted straight line. If you look at Figure 4 in my February
The scaling law for the average number of directional changes 2020 article, you will see that equation 4 accurately describes
(〈NDC〉) over a sample size of S bars and a threshold Λ is: the average return as a function of threshold.
〈NDC(Λ)〉 = Λ
R ( ) D
Eq. 1 Recap: Scaling in volatility
First volatility scaling law
where the exponent D and R are constants for the currency Volatility has a key role in the behavior of both the NDC and
pair. The scaling law equation can be rewritten in the log-log the average return. In this analysis, volatility (V) is defined
form as: as the average absolute value of the change in closing price
(P) from bar to bar.
( )
log 〈NDC〉 = D log(Λ) + B Eq. 2
N
〈| ΔP |〉 = 1 |P – P
where D is the slope and B is the constant intercept for the N Σ i i–1
|
i=1
fitted straight line.
The one-hour EURUSD data from 2004 to 2019 has been V = 〈| ΔP |〉
used for all data analysis. Figure 1 shows that the log 〈NDC〉
versus log threshold data is well described by the scaling law Volatility is specified in pips.
in equation 2. The 〈NDC〉 follows a scaling law with volatility as shown
in equation 5.
Third scaling law: Average return vs. threshold M
Additional scaling laws were reported in 2010 (see the article 〈NDC(V)〉 = V (G ) Eq. 5
listed in “Further reading” at end, “Patterns In High-Frequency
FX Data: Discovery Of 12 Empirical Scaling Laws”), includ- where V is the volatility and the exponent M and G are con-
ing a relationship between the average size of the return R of stants for the currency pair.
July 2020 • Technical Analysis of Stocks & Commodities • 25
given a specific threshold selection and sample
size S bars.
Figures 1 and 2 show that the 〈NDC〉 scales in
both volatility and directional change threshold.
Summary of recap
We now have four independent scaling law equa-
tions (equations 1, 3, 5, 7) which relate average
return and average NDC to threshold and volatility.
In the following sections, I show how these four
equations can be collapsed into two equations,
each with three free parameters.
D M
V
〈NDC(Λ,V) 〉 = Λ (R) ( ) G
Eq. 8
( )
log 〈NDC〉 = M log(V) + H Eq.6 ( )
log 〈NDC(Λ,V)〉 = D log(Λ) + M log(V) + T Eq. 9
where M is the slope and H is the constant intercept for the where D and M are the two slopes on the log-log plot and T
fitted straight line. is an intercept constant.
Figure 2 shows log 〈NDC〉 versus log volatility data for Let’s see how well equation 9 describes the data. A chi
a specific threshold range of 35–40 pips. This scaling law square minimization program was used to find the three free
equation enables the prediction of the average segment parameters (D, M and T) in equation 9.
length L (〈L〉 = S/〈NDC〉) directly from measured volatility, Figure 3 shows the log〈NDC〉 versus log volatility for
26 • July 2020 • Technical Analysis of Stocks & Commodities
four threshold regions while Figure 4 shows the
log〈NDC〉 versus log threshold for four volatility
regions. In these figures, the fitted lines from equa-
tion 9 are shown along with the data. From Figures 3
and 4, we see that the assumption of common slopes
is actually correct! With just three parameters (two
slopes and an intercept), the value of 〈NDC〉 and
therefore the average value of the segment length
(〈L〉=S/〈NDC〉) can be predicted from the mea-
sured volatility and specified threshold.
Figure 5 shows that the predicted average NDC
from equation 9 closely matches the measured
average NDC for monthly values from 2004
through 2019. FIGURE 5: PREDICTED AND MEASURED <NDC> VALUES AT EACH MONTH END
M E
V
〈R(Λ,V)〉 = Λ (C ) ( ) F
Eq. 10
( )
log 〈R(Λ,V)〉 = M log(Λ) + E log(V) + Z
Eq. 11
Trading strategies
I developed two example trading strategies using a two-
dimensional scaling model. These strategies were implemented
with expert advisors in the MetaQuotes Language 4 (MQL4) Scaling laws provide
and run on the MetaTrader 4 platform using actual historical excellent tools for developing
tick level data. (Subscribers to this magazine will find these trading models because they
expert advisors at this magazine’s website, Traders.com, in
the “Article code” section of this issue.)
enable prediction of key
Both strategies use equation 11 to calculate the threshold pattern characteristics.
Λ based on a specified average return 〈R〉 and the measured
volatility V. From the computed threshold and measured
July 2020 • Technical Analysis of Stocks & Commodities • 27
FIGURE 8: TEST PERFORMANCE OF REVERSAL STRATEGY. The profit performance shows a steady gain over the test period 2010–2019.
Strategy # Trades $ Profit Profit/Loss Profit/Trade % Loss average length 〈L〉 = S/〈NDC〉).
Trend 1006 13,233 1.72 13.1 12.0
Results for both strategies are shown in the next section.
Reverse 924 12,812 1.92 13.9 10.4
Model performance
FIGURE 9: TEST PERFORMANCE, EURUSD MINI LOT. This table shows the I ran the trend and reversal strategies on the MetaTrader 4
performance of the two strategies for the period January 2010 through December
2019 for a mini lot of EURUSD. Strategy Tester platform using historical tick data. This
provides very precise performance testing for expert advisor
volatility, equation 9 is used to calculate the average segment testing in currency trading. The performance for the reversal
length in the zigzag pattern. The trading strategies and expert strategy on one hour (H1) EURUSD data from 1/2010 to
advisor software are similar to those presented in my February 12/2019 is shown in Figure 8. An excellent profit/loss ratio
2020 article. However, determination of the zigzag threshold of 1.92 is achieved along with a steady profit gain over the
and average segment length now uses two-dimensional scal- period of test. A similar performance curve is seen for the
ing law equations. trend strategy.
For a lot size of 0.10 (mini lot) EURUSD, the table in Figure
First trading strategy: Trend strategy 9 shows the performance of the two strategies for the period
The first strategy is the trend strategy. An up or down zigzag January 2010 through December 2019.
segment is declared when the closing price change exceeds
the threshold. At the earliest possible point in time, a buy for Last thoughts
an up segment or a sell for a down segment can be executed. Scaling laws provide excellent tools for developing trading
Other information about segment average values and length models because they enable prediction of key pattern char-
of the current segment are used for the trading decision. acteristics. With newly observed and existing scaling laws
extended into two dimensions, the effects of volatility can
Second trading strategy: Reversal strategy be readily incorporated into a trading model and improve
The second strategy is the reversal strategy. In this case, the model’s overall performance. Since volatility changes
when the length and price change of the current (incomplete) over time, the model will optimize trading performance by
segment exceeds the average values for these parameters, a using scaling laws to vary key model parameters, such as the
reverse trade is executed. The average value of price change zigzag threshold.
and segment length are predicted by the scaling laws for
average NDC and average return per segment (with segment Richard Poster has been designing and implementing FX
trading models for 10 years along with private FX trading.
He has a PhD in physics and has used the many techniques
and methodologies from his experience in elementary particle
physics research and later developing electronic warfare
Scaling laws that represent systems. He is interested in applying neural networks, fuzzy
the fractal structure of FX rate logic, fractal analysis, and quantum mechanics to FX trad-
data can be used to predict ing models. He may be reached at [email protected].
the expectation value of FX
The MetaTrader 4 expert advisors discussed in this article
parameters such as the average are available in the Article Code section of our website,
return of an up/down trend or Traders.com.
the duration of a trend.
Continued on page 45
28 • July 2020 • Technical Analysis of Stocks & Commodities
The trading platform you’d build
(if you built trading platforms).
Customize your view of the market so you can focus on what’s important to you with thinkorswim®.
Create your own indicators with thinkScript®, visualize the market with custom charting, and use
personal predictions to forecast the values of stocks you care about with the Company Profile tool.
And, this award-winning investing experience is now commission-free.*
See what customization can do for your trades at tdameritrade.com/thinkorswim
*Applies to U.S. exchange-listed stocks, ETFs, and options. A $0.65 per contract fee applies for options trades.
Company Profile forecasts are hypothetical, based on user-defined assumptions, and not guaranteed. All investing involves risks, including loss of
principal. TD Ameritrade, Inc., member FINRA/SIPC. © 2019 TD Ameritrade.
INTERVIEW
A Conversation
With Jay Kaeppel
Jay Kaeppel has over 30 years of varied experience in options, equity, and
futures trading as a research analyst, trader and portfolio manager. Profession-
ally, he began his career as head trader at Essex Trading Co. managing futures
accounts for eight years, and as a programmer, he co-developed Option Pro
trading software, which was the winner of our Readers’ Choice Award for six
consecutive years in this magazine in the category of Options Trading Systems.
He then became a trading strategist and trading instructor for Optionetics,
writing a weekly column for nine years called “Kaeppel’s Corner.”
For the past five years he has been a vice president and director of research
at Alpha Investment Management, Inc. In addition, he offers regular market
commentary on his website JayOnTheMarkets.com.
He is a prolific writer, as evidenced by his authoring four books on trading:
Seasonal Stock Market Trends (Wiley), The Four Biggest Mistakes In Option
Trading (Wiley), The Four Biggest Mistakes In Futures Trading (Wiley), and
The Option Trader’s Guide To Probability, Volatility, And Timing (Wiley).
Kaeppel currently writes the monthly Explore Your Options column for this
magazine, as well as contributing many articles on a variety of subjects since
1999. Kaeppel can be reached at [email protected].
Stocks & Commodities Contributing Writer and ETF columnist Leslie N.
Masonson interviewed Kaeppel via email in early March 2020.
The main thing is finding
an “edge” and exploiting
it repeatedly.
You first became interested most people is “assume you are not
in the stock market in 1981. one of them.”
What has changed in the Connors, Linda Bradford Raschke,
markets since then? When did you first encounter technical and Tom McClellan
Everything moves faster analysis and how did you build your
because of technology. But trends are still knowledge base? All of their old books are still relevant.
trends, ranges are still ranges, breakouts During my first job out of college I In my opinion, Linda’s recent book,
are still breakouts, and human nature is went to the library at lunch and read Trading Sardines, is required reading
still human nature. Which reminds me everything I could get my hands on. for anyone considering trading as a
of one of my favorite sayings: “Human My primary influences were many and full-time career.
nature is a detriment to trading and in- I learned different things from different I would also mention the Trading Wiz-
vestment success and should be avoided people, such as: ards books by Jack Schwager. There are
as much as humanly possible.” two things to pick up from those books:
• Norman Fosback: quantitative 1) there are lots of trading methods that
Then you are a believer in an objec- analysis of various indicators plus work well. There is no one best way. The
tive, rule-based approach to trading seasonality trick is finding what works well for you,
rather than flying by the seat of your • Marty Zweig: the importance of and 2) the overwhelming importance
pants, right? price trends, interest rates and of risk control and minimizing losses.
Yes. Fear and greed are part of that the Fed They all touch on that as a primary key
pesky human nature and no one is im- • Yale Hirsch and Peter Eliades: to their success.
HONZA KREJ/SHUTTERSTOCK
pervious to it. An objective plan allows the value of seasonal and cyclical
an individual to take the emotion out. trends In your mind, is there a difference
While there are individuals who have • Martin Pring and Gerald Appel: a between investing and trading?
the ability to trade successfully by the variety of technical tools Yes, I think of them as separate en-
seat of their pants, my frank advice to • More recent influencers: Larry deavors. Investing is “putting money to
30 • July 2020 • Technical Analysis of Stocks & Commodities
work,” hopefully in some sort of objec- The second thing is that
tive manner to grow one’s capital over buying and holding a stock
time. Trading is about making money index fund with 100% of The best thing about option
here and now. Two completely different your capital is a mistake—in trading is that there are so
approaches in my mind. my opinion. I call it a “drift- many choices. The worst
ing with the tide” strategy. If
What would be your most important the sky is clear and the seas
thing about option trading
advice for traders? are calm, then it’s smooth is that there are soooooo
sailing. But storms are in- many choices!
1. Remember this phrase, “It’s not evitable for both the weather
how much you make when ev- and the stock market. And
erything goes right that matters, the longer the sailing has the terrific bull market in the past
it’s how much you keep when ev- been smooth, the more people forget decade, it is interesting to note that
erything goes wrong.” Bad things about the storms. from August 2000 through Janu-
happen to every trader, period. Job The peaks in the Shiller P/E ratio in ary 2020 (19 years and 5 months),
one is to be able to come back and 1929, 1937, 1965, and 2007 were followed the average annual compounded
be a trader again tomorrow, that is, by declines of -89%, -49%, -40%, and return for the Vanguard S&P 500
never, ever put yourself in a position -54% for the Dow and the 2000 peak was index fund (ticker VFINX) was just
to “lose the farm.” A lot of traders followed by an -83% decline for the Nas- +5.75%. Not exactly a stellar rate
who fail never take the time to learn daq 100. Prior to the 2020 selloff people of return for almost 20 years of a
proper position sizing. had forgotten all about this. But why ride “ride ’em out” approach.
2. In a nutshell, trading success or declines like that to the bottom?
failure is determined by the fol- So what would you suggest as an al-
lowing calculation: “# of winners Any other dangers of buy & hold in ternative approach?
divided by # of losers” times “av- your mind? Well, it’s more food for thought than a
erage winning trade divided by Yes. The stock market can go sideways formal suggestion, but consider this:
average losing trade.” That’s the for very long periods of time. Some
entire game in one number. A high people resolve themselves to believe • 30% invested buy & hold: While
value equals success, a low value that “timing is impossible” and that I don’t advocate 100% because
equals failure. So focus your efforts they have to simply ride out the bear the market does go up in the long
on maximizing this number. markets to get their long-term returns. run, it makes sense to always have
3. The day that you experience ab- But ironically, buy & hold success is also something in there.
solutely no emotion as you are actually a function of timing as well, • 30% invested using trend-fol-
stopped out of a properly managed that is, during which years were you in lowing: Occasional whipsaws are
losing trade is the day you gain the market? If you’re fortunate you are inevitable but the important point
the potential to become wildly in during the good years. But consider is that you don’t ride those -30%
successful in the markets. a little history: to -80% declines all the way to
4. Everyone knows Murphy’s Law, the bottom. The psychological
which says, “Whatever can go • From 1927 to 1949 the stock market benefit cannot be described, only
wrong will go wrong.” Traders went sideways for 22 years. Imag- felt. And you actually have some
need to live by what I call Murphy’s ine someone saying this in 1949: cash available to invest when things
Corollary, which says, “Murphy “Hey Honey, remember that money turn around.
hates you. Plan accordingly.” we put to work in the stock market • 30% invested using tactical
back in 1927? Great news! We’re strategies: This can be a single
What about for longer-term inves- back to breakeven!” I can only strategy or a variety of technical,
tors? speak for myself, but I would prefer seasonal, or even fundamental-
Two things. One, there is no such not to have that conversation. based strategies. Once again, the
thing as “one best strategy.” If you can • From 1965 to 1982, the stock point is that these types of strate-
combine, say, three non-correlated strat- market went sideways. While this gies are typically intended to: a)
egies you can generate a nice smooth is technically a 0% return over 17 outperform buy & hold over time,
upward-sloping equity curve over time. years, it was actually worse than and b) do something besides just
I call it “LLUR” for lower left to upper that. Because of high inflation dur- “sit there and take it” when things
right. That’s the goal. The more one’s ing this period, purchasing power go severely south. Also, it is useful
equity curve slopes up to the right, the declined a fairly shocking -75%. to combine strategies that—using
more likely they are to stick with their • From 2000 to 2012 the stock highly technical terms here—when
approach. market went sideways. Despite one “zigs” the other “zags,” which
July 2020 • Technical Analysis of Stocks & Commodities • 31
that you do? If so, how do can be a little more creative (ATR-based,
you determine the stop x-day low, etc.)
There is no such thing as levels to exit?
“one best strategy.” If you As with everything else, What are the keys to trading and invest-
there are different philoso- ment success?
can combine, say, three phies. For example, I like The main thing is finding an “edge”
non-correlated strategies, Larry Connors’ work a and exploiting it repeatedly. A chart pat-
you can generate a nice lot. I have all of his books. tern, an indicator setup, a seasonal trend.
smooth upward-sloping Straightforward, rule-based, Maybe add in some trend-following to
and the numbers look good. make sure you are typically “going with
equity curve over time. Yet most of the strategies in the flow.” Something you are comfort-
his books advocate for not able with, something you believe will
using a stop-loss—and the continue to work. Then add in some
smooths out the volatility of the numbers associated with those strategies reasonable position sizing and some
equity curve. back him up. But my mindset is that if inviolable risk controls and have at it.
• 10% invested using whatever ap- I am going to risk a certain percent of
proach you want. A lot of investors capital, I have to have some way of do- From your research, what patterns
make the mistake of being afraid ing that, and a stop-loss—for better or have you found that repeat over time
to ever trust their gut and others worse—automatically cuts a loss. Just in the markets?
make the mistake of risking too a different mindset. The best way I’ve Well obviously, I am a big fan of sea-
much of their capital on their in- heard it put is this: “The purpose of a sonality. There are a few reasons why.
stincts. Think of a stock you wish stop-loss order is not to maximize profit- First, as I said, one key to success is
you had bought, or conversely, ability. The purpose of a stop-loss order “finding an edge.” The vast majority of
that you bought way too much of. is to save your sorry assets.” people in the market look at technical
Well, if you only risk 1% to 5% of Like I said, different people have dif- and fundamental information. Very few
your entire portfolio and the stock ferent philosophies and that’s okay. The look at seasonality. So I feel that you are
tanks, is that really the end of the main thing to remember is that successful more likely to find a unique edge if you
world? Go ahead and trust your traders: a) control risk ruthlessly, and b) look where others are not. Also, there
gut. Take your shot. Just don’t bet have short memories when it comes to are a lot of unique anomalies related to
the ranch. If you’re good at it you losing trades. They don’t drag them for- seasonality.
might just make yourself rich. And ward and allow them to influence future Now I will say that committing
if you are not, you will figure that trading decisions. By the way, it’s much capital based solely on the date on the
out in time too. easier said than done. calendar does require a leap of faith.
But that is not always the only way to
Obviously, splitting things up as I have What type of stops have you found most use seasonality. For example, one can
just described (Figure 1) can get a little useful (e.g., standard stops, stop limits, look at a particular seasonal trend that
involved. But it gives you the potential trailing stops, and ATR-based stops), is bullish—say, soybeans typically rise
to make money in any kind of market, and how do you determine where to during February into May—and then
and stands to insulate you from a lot of place them? add in some trend-following and ask “is
potential pain by avoiding riding the For purposes of limiting an initial loss price action actually bullish?” If some
market to the bottom, or just holding a standard stop order typically serves that asset is in an actual price uptrend during
on while the market goes sideways for purpose most efficiently. If you decided a typically bullish time of month or year
many years. you are going to risk x% on a trade and or whatever, that can be a pretty simple
you are down x%, cut bait, move on. yet pretty powerful combination.
One of the ways to limit losses is to use Period. No remorse. For a trailing stop—
stop orders on trades. Is that something where you are locking in a profit—one Since you are a believer in seasonality,
is it safe to assume you are an advocate
of “sell in May and go away”?
% Approach Purpose
Yes, but not necessarily in the way most
30% Buy & Hold Always have some market exposure
people think. The key as I mentioned is
30% Trend-Following Automatically reduce risk in a prolonged bear market finding an edge and exploiting it repeat-
30% Tactical Strategies Diverse opportunities; smoother equity curve; cut risk in a bear market edly. There is an abundance of research
10% Your Choice Trust your gut, be your own hero! regarding the fact that the stock market
FIGURE 1: ONE APPROACH TO STRATEGY DIVERSIFICATION. Investors can invest a percentage of their
tends to perform pretty well November
portfolio in four different approaches to gain the benefit of multiple opportunities, instead of just following one through April/May, especially if you
approach with 100% of their money. follow that approach over a five-year
32 • July 2020 • Technical Analysis of Stocks & Commodities
period. Certainly, a lot of volatility can tistically significant.” My theory and end of October, so it is not technically
happen along the way, but since 1949, is that this is because that’s where correct to call it a “bearish” period. But
buying and holding the Dow November 1 the bulk of growth occurs over two thoughts to keep in mind: First, from
through May 31 every year for five years time—that is, the midcap space is 1949 through 2019, the cumulative price
has showed a gain 64 out of 66 five-year essentially comprised of formerly gain for the Dow during June through
rolling periods. That’s 97% accuracy. small-cap stocks on their way to October was just +34%.
That’s a pretty consistent trend to hang becoming large-cap stocks—that Secondly, consider an alternative in-
your hat on. is, the growers. vestment. If we look at total returns for
3. For whatever reason, the power the S&P 500 index and three- to seven-
In the November 2019 issue of this zone in the US extends from No- year treasuries only during June through
magazine, you wrote an article titled vember 1 through May 31, while October since 1981, we find bonds earned
“Stock Market Seasonality: A Global the international power zone is 289% versus 107% for the S&P 500 stock
Phenomenon” based on the “sell in May November through April plus the index. Just as significantly, bonds had a
and go away” approach, using data month of July. If you had held the maximum drawdown of -2.5% versus
from seventeen single-country ETFs. MSCI EAFE Index during those -40.8% for the S&P. If you are focused
What conclusions did you reach, and power zone months starting in on consistency and low volatility, those
were you surprised by the outcome? November 1970, you would have numbers are pretty compelling.
Well, doing the research was a real gained +12,461% versus a loss of
eye opener. Most every study I had ever -46% if you had held during all What are some examples of seasonal
seen or done looked at the Dow and/ other months, which I refer to as trends that most investors may not be
or the S&P. But the reality is that the the “dead zone” (Figure 3). Call it familiar with?
“power zone”—as I like to call it—is data mining if you’d like, but the The bond market is extremely cycli-
a global phenomenon. Virtually every consistency is tough to beat. cal. Stock-correlated bond vehicles
single international stock index and such as ticker CWB (convertibles) and
every individual single-country stock And what about the rest of the year, HYG (high-yield) typically perform
index tested showed a strong net gain if or as you call it, the dead zone? Do best December through April. Long-
held every year November through April you suggest avoiding the stock market term treasuries (ticker TLT) have been
and—with one minor exception—they altogether? best between May and August, and
all showed significant losses over time The reality is that on a year-to-year intermediate-term treasuries (ticker IEI)
during the other months of the year. basis, the S&P and Dow do advance about are favored September through Novem-
60% of the time between the end of May ber. Using Vanguard funds VWEHX,
Did you uncover any other surprises in VUSTX, and VFITX in this manner,
researching this phenomenon? since all three funds were available in
I’ll give you three: 1991, has outperformed buying-and-
holding the three funds by over 3-to-1.
1. If you look at rolling five-year Almost no one is aware of this.
returns across a variety of index-
es—growth, value, large- cap, low Are there any other seasonal/cyclical
volatility, momentum, etc.—most factors at work in the bond market?
show a five-year cumulative power You bet. For years, long-term treasur-
zone gain 100% of the time, or close FIGURE 2: MSCI EAFE DURING POWER ZONE ies have made all their money during
to it. There is no guarantee that MONTHS OF NOVEMBER THROUGH APRIL PLUS
the 10th, 11th and 12th trading days of
JULY. Clearly, this equity curve illustrates the long-
this will last forever, but if you are term value of this approach, rising over 12,000% since the month and during the last five trad-
looking for an “edge,” this seems October 1970. ing days of the month. All other days
like a good place to look. combined have almost always shown
2. The top-performing index during consistent losses over time.
the power zone (Figure 2) histori-
cally over time has been the S&P Do you think this trend will continue
Midcap 400 index. Now the reality to hold if interest rates rise?
is also that it can underperform That’s an important question. Interest
for several years at a time as well. rates tend to move in roughly 30-year
However, since 1981, it has gained waves. We have now been in a downtrend
almost three times as much as the for almost 40 years, so conventional
FIGURE 3: MSCI EAFE DURING ALL OTHER
S&P 500 index during November MONTHS. As expected, the other months were much
wisdom argues that rates are due to rise.
through May. That’s what we quan- more volatile, but ending 50% lower, which is really an But now that I see negative interest rates
titative types refer to as, ahem, “sta- amazing contrast to Figure 3’s results. in many countries around the globe, I am
July 2020 • Technical Analysis of Stocks & Commodities • 33
FSHOX as a proxy): No- to point out that the best thing about
vember through May up 30 option trading is also the worst thing
The vast majority of people times in 33 years and total about option trading.
in the market look at return 1986 through 2019
equals +8,584%. Mean- How’s that?
technical and fundamental while, cumulative return The best thing about option trading
information. Very few look for May through October is that there are so many choices. The
at seasonality. equals -63%. A pretty stark worst thing about option trading is that
difference, to put it mildly. there are soooooo many choices!
Dual-Candle Breakouts
Simply buying into an uptrend in iso- Step-by-step action plan early in the breakout move. This is similar
lation often leads to false breakouts. Here’s how you can start using this to using technical indicators such as the
Instead, you may find more success if you strategy: average true range (ATR) as it increases
scan for dual-candle breakout patterns. in value, revealing an acceleration to the
Here’s how to find them. Step 1: Visually scan for charts in upside in price action.
which a sequence of two candles in an
Trade management tips
W
by Ken Calhoun uptrend is seen, in which the second
candle has a height of at least twice When entering your first breakout in a
hen it comes to correctly the previous candle height. sequence, it is usually a good idea to use
entering uptrending charts, a very small share size. When setting
your goal should always be Step 2: Enter your position on the day your stop-loss, the price that proves this
to find the strongest price following this dual-candle breakout pattern wrong would be an obvious loss
action breakouts. One of pattern once price is above the high of support under both candles. In addition
the easiest patterns to look for is one in of the second candle. to identifying your first entry, you can
which uptrending candles are getting also use this dual candle pattern later
taller in size, indicating increasing buy- Step 3: Use an initial stop-loss at the in the lifecycle of your swing trades to
ing strength. When daily trading ranges low of the candle pattern. scale in and buy more shares. This pat-
expand during an uptrend it indicates a tern is relatively easy to spot visually
technical breakout that you can capital- Insights: Why this and is a core pattern I use in my own
ize on. This month’s column will explain technique works swing trades.
how to visually scan for this pattern and Think of price action breakouts like
trade it. driving onto a freeway—you want to Ken Calhoun moderates a popular live
accelerate your speed when driving; in trading room for active traders. He is
Sequence of taller trading, you want to enter your trades as the founder of TradeMastery.com, an
candles price is going higher relatively quickly. interactive webinar site for active trad-
Simply buying into an uptrend in isola- This momentum-based trading approach ers, and is a UCLA alumnus.
tion often leads to false breakouts, much is designed to help us enter our positions
to every trader’s frustration. Instead, during strong price action, relatively
you may find more success
by looking for dual-candle
breakout patterns, in which
the height of the second of
two candles is taller than the
first candle in an uptrend, as
seen in Figure 1, Moderna
Inc. (MRNA). Note that this
pattern needs to occur at a
new one-month high to be
valid; you do not use this for
entries when the candle pat-
tern is observed inside the
previous trading ranges or
near lows. Also, the volume
of the second candle needs to
be higher than the volume of
the first candle, as illustrated
in Figure 1. You enter on the
day following this dual-candle
eSIGNAL
breakout pattern. FIGURE 1: DUAL-CANDLE BREAKOUT IN PROGRESS (MRNA). As price action breaks to new highs, this candle pattern
shows how strong the breakout can subsequently move.
DATA BACKUP AND MANAGEMENT ready to restore any corrupted data. I but also to their internet router. Having a
I just tried to open my trading platform also manually export my workspaces, partial or whole house generator is also
today, and all my indicators and strate- strategies, and studies to a USB stick, a good idea.
gies are gone. HELP! and keep that offsite. Finally, I clone my
There is nothing worse than opening hard drive every few weeks. Broker connection
your trading platform on Sunday night That leaves me with four unique loca- What happens if there is a major shut-
before the market open and seeing… tions where my trading data is stored. down of the internet or the connection to
nothing. All the custom charts you cre- In case of corruption, I will still be your brokerage, and you cannot access
ated…gone. All the strategies, indicators inconvenienced, but not permanently your brokerage? I keep phone numbers
and studies you created…gone. It is a dead in the water. for my brokerage’s trade desk close by, in
sickening feeling, and if you think it Additionally, I have a backup PC that case I am unable to access my brokerage
can’t happen to you, sooner or later you can quickly be brought online in case the online. So worst case, I can always call
are in for a rude awakening. primary PC crashes. I also can use the them and exit trades.
When this happens—and it likely will VPS for this purpose. Having multiple My rule of thumb with all my backup
at some point, regardless of the platform ways to access your trading platform is plans is to be up and running within 15 to
you use—what can you do? I follow a wise idea. 30 minutes, regardless of the root cause.
a data backup and management plan, If I find myself “in the dark” for longer
which encompasses not only corruption Internet connection than this, I know I have to improve my
issues, but also general fault points with Having multiple ways to access the inter- backup plan. Occasionally, I simulate a
my whole setup. net is a key part of a backup plan. Many failure, just to keep my recovery skills
Let’s walk through some of the impor- traders have internet service from two sharp, and to ensure I’ve covered all
tant pieces of a trading backup plan. different providers, and there are routers possibilities.
that will seamlessly switch providers Obviously, details will vary from
Local PC or virtual private server? should one go down. I personally use trader to trader, but having a backup plan
Most retail traders use their home PC my cell phone hotspot as an emergency for every key piece of your trading setup
or smartphone to control their trades. backup. I also have a few trusted places is really important. The best practice is
I personally use a home PC for most where I can take my laptop to connect to have this plan written down and eas-
automated trading, although I’ll switch via wi-fi. Again, having redundancy in ily accessible. The last thing you need
to a virtual private server (VPS) if I am your setup is key. during stressful events is panic and rash
traveling for an extended time. I have a decision-making. Having a good backup
cloud-based backup service for all my Power connection plan will eventually save you a lot of time
personal data (I use Backblaze). I also Everyone trading from home should and aggravation.
use my trading platform’s backup feature have a battery backup that supplies
on a weekly basis, so I have an archive emergency power not only to their PC,
B
by Robert van Eyden, PhD McGinnis famously coined the term “FOMO” in 2004.
two greatest enemies of the equity fund investor are expenses framework. The desire is brought about by a fear of miss-
and emotions.” This is the case for traders as well. ing out on the movement—especially in volatile markets. In
It is well documented that risk and trade management are reality, during periods of market volatility, the best course
far more critical components for trading success than is trade of action may very well be to take no action, although this
identification, especially if trade identification occurs outside feels counterintuitive.
38 • July 2020 • Technical Analysis of Stocks & Commodities
TRADING PSYCHOLOGY
U
Review of seven utility ETFs
tility companies are the backbone of the power This article provides comparative data on the seven largest
industry in the United States. And some of these domestic utility ETFs based on assets under management
companies have had a rough going with natural (AUM). Utilities are one of the most homogenous company
disasters, man-made conflagrations, and compet- groups and the ETF offerings in the category clearly show
ing technologies. Nevertheless, this industry is this to be the case, especially with regard to their very similar
an essential component of our well-being and the portfolio holdings.
nation’s future growth. Solar power and other initiatives have All the data provided in the tables were obtained by XTF.
put pressure on utilities to become more efficient and reduce com. Figure 1 provides the ticker symbols and names of the
PHOTO BY ALEKSANDAR PASARIC
their operating costs. Less expensive natural gas has caused ETFs covered. In addition to these ETFs, there are others in
nuclear power plants financial strains, resulting in closings, the utility space that were not included because they had a low
such as the April 30, 2020 Indian Point Unit 2 reactor in New XTF.com rating, a small amount of AUM or very low daily
York closing down operations that were operational since 1974, trading volume or a combination of all three criteria. These
since its generating capacity had diminished to only 65%. include PSCU, JXI, and JHMU. In addition, for the more
40 • July 2020 • Technical Analysis of Stocks & Commodities
WHY TRADE ETFS?
aggressive investors, there are three ETF Name Ticker Symbol Metric ranking was 89% (100% is
leveraged ETFs not evaluated here: Utilities Select Sector SPDR Fund XLU the highest). All these measurements
UPW and SDO from ProShares, and are proprietary measures of XTF.
Vanguard Utilities ETF VPU
UTSL from Direxion. Information com and are explained in detail on
iShares U.S. Utilities ETF IDU
about these ETFs can be found on their website.
their sponsors’ websites. Fidelity MSCI Utilities Index ETF FUTY XLU’s annualized one-year return
The common characteristics of the First Turst Utilities AlphaDEX Fund FXU of 4.9% and its similar three-year
ETFs reviewed here are that they are Invesco 500 Equal Weigh Utilities ETF RYU return of 7.82% were the highest of
all open-end investment companies, Invesco DWA Utilities Momentum ETF PUI the group. Incoming fund flows over
listed on NYSE Arca (except for PUI, FIGURE 1: UTILITY ETFS. The five largest ETFs in the the past year were an amazing $3.37
which lists on the Nasdaq), equity only, utility category are shown with their tickers. Note that Invesco billion, clearly at least ten times larger
mostly large-cap or broad multi-cap, sponsors two of them. than its nearest competitor, Vanguard
style of core or blend, cap-weighted Utilities ETF. About 78% of its capi-
(except for FXU, which is weighted based on various funda- talization was large-cap with 22% mid-cap. Electric utilities
mentals, and RYU, which is equally weighted), and passively accounted for 60% of its industry exposure with multi-utilities
managed (except for FXU and RYU, which use an enhanced coming in second at 32%. This ETF is the only one of the
strategy that will be explained shortly). The standard deviation group to offer both options and futures.
over three years for all these ETFs was right around 23% with
only FXU at 22%. Figure 2 provides the comparative data I’ll Vanguard Utilities ETF (VPU)
discuss here in more detail. This Vanguard ETF came into existence on January 30, 2004,
five years after XLU, and has been able to capture $3 billion
Utilities Select Sector SPDR Fund (XLU) in AUM, which far exceeds that of IDU with a 3.5-year lead
This ETF, issued by SSGA Funds Management, Inc., was the in June 2000. No doubt the Vanguard reputation and lowest
first one in this category with a December 16, 1998 inception expense ratio of 0.10% played a big role in its asset growth.
date. Therefore, it has the longest track record of almost 22 Its annual dividend yield of 3.06% is third best of the group.
years, and has garnered a huge $12 billion in AUM. Based Companies in its portfolio include similar ones to XLU, but
on its early entry and huge presence, it is the behemoth of also include those that are power producers and distributors,
the group by far. This ETF is one of eleven Sector SPDRs as well as nuclear and nonnuclear facilities. Its average daily
and comprises the utility companies in the S&P 500 Index. trading volume of 265,000 is fourth best of the group.
They include companies such as electric and gas utilities, The portfolio holds 67 positions, the largest of the group.
multi-utilities, independent power producers, and energy The top five holdings account for 37.5% of the assets: NEE, D,
traders. XLU has a 99.9% correlation with FUTY and VPU, DUK, SO, and AEP. This ETF’s XTF rating is a solid 9.8 out
and 99.8% with IDU and 99.7% with RYU. These four ETFs of 10, and its Structural Integrity rank of 97% is the highest
are basically clones, as the all have similar if not exact top- of the group. Lastly, its Investment Metric was 81%, placing
five holdings. it at a tie for second lowest of the category.
Its expense ratio of 0.13% is in the lowest third of its VPU’s annualized one-year return is a disappointing 2.86%,
competitors, and its an-
nual dividend yield is Category XLU VPU IDU FUTY FXU RYU PUI
the highest at 3.31%.
XTF Rating 9.9 9.8 9.3 9.7 8.8 9.6 7.7
The average daily trad-
ing volume of nearly 20 Investment Metric Rank 89% 81% 81% 82% 87% 88% 64%
million shares dwarfed Structural Integrity Rank 95% 97% 85% 95% 74% 87% 71%
its competitors, whose Market Cap $12B $3B $889M $805M $792M $312M $82M
numbers ranged between Expense Ratio 0.13% 0.10% 0.43% 0.08% 0.63% 0.40% 0.60%
32,000 to 314,000. The Annual Dividend Yield 3.31% 3.06% 3% 3.22% 2.65% 2.87% 2.5%
portfolio holds 28 posi- Avg. Daily Volume 19,959,195 265,880 93,079 266,035 314,615 32,187 72,207
tions with the top five Avg. # of Components 28 67 48 65 35 28 35
accounting for 28.5% of
Inception Date 12/16/1998 01/30/2004 06/20/2000 10/21/2013 05/08/2007 11/07/2006 10/26/2005
the assets: NEE, D, DUK,
SO, and AEP. This ETF’s Annualized Period Return 1 Year 4.9% 2.86% 2.48% 2.79% -2.31% 1.25% -0.65%
XTF rating is 9.9 out of Annualized Period Return 3 Years 7.82% 7.55% 7% 7.49% 1.91% 6.62% 6.14%
10 (10 is the highest), and Net Asset Flows - 1 Year $3.37B $364.66M $157.91M $217.78M $-27.56M $-2.50M $-136.75M
its Structural Integrity Net Asset Flows - 3 Years $4.14B $1.17B $87.16M $511.40M $-515.57M $122.33M $-68.63M
rank is a very high 95% Standard Deviation 3 Years 23.33% 23.34% 22.94% 23.14% 21.62% 23.33% 23.5%
(100% is the highest). FIGURE 2: COMPARISON OF UTILITY ETFS. Critical comparative data is shown for each ETF. They are arrayed in AUM mag-
Lastly, its Investment nitude from left to right.
July 2020 • Technical Analysis of Stocks & Commodities • 41
enter the category. Its AUM of $805 million is fourth best,
but a very good performance considering the late entry to the
Utilities have a long history ETF arena in general, especially compared to Vanguard, which
beat them to the punch over nine years earlier. The quality
of dividend payments and recognition by investors of the “Fidelity” brand name
and are sought after by definitely played an important role in rapid asset generation,
investors as a portfolio impressive yearly inflows and better-than-average trading
component when the volume in the category.
Its annual dividend yield of 3.22% placed it second in
economic and stock market the rankings. The average daily trading volume of 266,000
conditions soften. shares is second highest of its competitors. The larger-than
-average utility portfolio holds 65 positions with the top five
accounting for 37.5% of the assets: NEE, D, DUK, SO, AEP.
This ETF’s XTF rating of 9.7 is very good and third highest,
but it was second best, and its three-year return of 7.55% was and its Structural Integrity rank of 95% ranks in the top two.
also second best. Incoming fund flows over the past year were Lastly, its Investment Metric ranking was 82%, placing it in
a solid $364 million, and $1.17 billion over three years, the the middle of the group.
second best. About 69% of its capitalization was large-cap, IDU’s annualized one-year return is a minimal 2.79% and
21% mid-cap, and 10% small-cap. Electric utilities accounted its three-year return of 7.49% were both right in the middle of
for 56% of its industry exposure with multi-utilities coming the group. Incoming fund flows over the past year were a solid
in second at 30%., and natural gas utilities at 5%. This ETF $218 million, and $511 million over three years, third best.
offers just options, no futures. VPU has a 99.9% correlation About 69% of its capitalization was large-cap, 21% mid-cap,
to FUTY, XLU, and IDU with 99.6% to RYU. and 9% small-cap. Electric utilities accounted for 56% of its
industry exposure with multi-utilities coming in second at
iShares U.S. Utilities ETF (IDU) 30%, and natural gas utilities at 5%. This ETF offers neither
Black Rock Inc. is this fund’s issuer with an inception date options nor futures.
of June 20, 2000, the second oldest of the category. Its AUM
of $889 million is third best, but well under the top two by First Trust Utilities AlphaDEX Fund (FXU)
a wide margin. With a start date two decades ago, its asset First Trust Advisors LP is this fund’s sponsor with an incep-
size would probably have been much larger if Vanguard had tion date of May 8, 2007. Its AUM of $792 million places it
not entered the arena four years later. IDU is reconstituted fifth. This ETF uses an enhanced index approach, which uses
quarterly and currently holds 48 positions. Its annual expense the AlpaDEX stock selection methodology to pick stocks
ratio of 0.43% is at least three times higher than its top two from the Russell 1000 Index. The stocks are ranked using
rivals, and is the third highest of the group. their performance ranking over 3-, 6-, and 12-months, their
Its annual dividend yield of 3.00% placed it dead center of sales to price and one-year sales growth, and finally, based
the competitors. The average daily trading volume of 93,000 on value factors including book value to price and cash flow
shares is dwarfed by its competitors and places it fifth out to price. The stocks receiving the highest scores are selected
of seven. The portfolio holds 48 positions with the top five for inclusion in the portfolio.
accounting for 38.6% of the assets: NEE, D, DUK, SO, AEP. Based on this highly fine-tuned multistep investment process,
This ETF’s XTF rating of 9.3 is very good, and its Structural one would assume that this firm had found a methodology that
Integrity rank of 85% ranks it third lowest. Lastly, its Invest- would work well, and at least keep up with the performance of
ment Metric ranking was 81%, equal to VPU, but in the lower the more traditional cap-weighted competition. Unfortunately,
third of the group. that is not the case, as it actually had the worst one-year an-
IDU’s annualized one-year return is a measly 2.48%, and nualized performance of -2.31%, and the worst three-year
its three-year return of 7% were both right in the middle of performance of 1.91%. Moreover, for this poor performance,
the group. Incoming fund flows over the past year were a solid First Trust charges a 0.63% annual expense ratio, the highest
$157 million, and $87 million over three years, fifth best. of its competitors. Also, its annual dividend yield of 2.65%
About 71% of its capitalization was large-cap, 22% mid-cap, is next to the lowest.
and 7% small-cap. Electric utilities accounted for 57% of its Interestingly, its average daily trading volume of 315,000
industry exposure with multi-utilities coming in second at shares is second best, eclipsing that of VPU and FUTY by
30%, and natural gas utilities at 5%. This ETF offers options, about 50,000 shares a day. The portfolio holds 35 positions
but not futures. with the top five accounting for 22.8% of the assets: NRG,
VST, UGI, NFG, and CNP. None of these positions matches
Fidelity MSCI Utilities Index (FUTY) that of its competitors, which is not surprising based upon
Fidelity Management & Research is this fund’s issuer with their selection filters. This ETF’s XTF rating is 8.8 and its
an inception date of October 21, 2013, the latest large firm to Structural Integrity rank of 74% ranks it next to last. Lastly,
42 • July 2020 • Technical Analysis of Stocks & Commodities
its Investment Metric ranking of 87% was very close to the positive side, the three-year flows were $122.3 million. About
top two in the group. 56% of its capitalization was large-cap, and 44% mid-cap.
Instead of receiving incoming fund flows, FXU has expe- Electric utilities accounted for 47% of its industry exposure
rienced outflows of $515 million over three years and $28 with multi-utilities coming in second at 36%, and alternative
million over the past year, the worst three-year record of all. and renewable energy at 6%. This ETF offers neither options
About 39% of its capitalization was large-cap, 39% mid-cap, nor futures.
and 19% small-cap. This allocation was much different than
its competitors, especially the high percentage of small-caps. Invesco DWA Utilities Momentum ETF (PUI)
That probably accounts for some of its weak performance, as Invesco is also the sponsor of its second ETF in this category
the small-caps have been market laggards. Electric utilities with an inception date of October 26, 2005—about one year
accounted for 43% of its industry exposure with multi-utilities earlier than RYU was brought to market. Its low AUM of $82
coming in second at 23%, alternative and renewable energy at million brings it in at dead last. Being available for 14.5 years,
11%, and natural gas utilities at 5%. This ETF offers options, its asset base is not impressive. This ETF uses the Dorsey
but not futures. Wright selection approach, which uses point & figure charting,
as well as relative strength analysis and ranking to determine
Invesco S&P 500 Equal Weight Utilities ETF (RYU) the strongest performers to place in the portfolio. This ETF
Equal-weight ETFs are common and RYU is the only one in is rebalanced and reconstituted quarterly.
this grouping from Invesco Capital Management LLC. This Its annual expense ratio of 0.60% is the second highest. The
ETF’s goal is to replicate the performance of the S&P 500 annual dividend yield of 2.50% is the lowest offered in the
Equal Weight Telecommunications Services and Utilities category. The average daily trading volume of 72,000 shares
Index. Since its inception date of November 7, 2006, it has is second lowest, which makes both Invesco ETFs the least
been able to gather AUM of $312 million, second from the transacted in the group. The portfolio holds 35 positions with the
bottom of the group, but a decent showing. Its annual expense top five accounting for 21.2% of the assets: NEE, WEC, XEL,
ratio of 0.40% is in the mid-range. Its annual dividend yield SO, and ETR. This ETF’s low XTF rating of 7.7 coupled with
of 2.87% places it just below the middle of the pack. its low Structural Integrity rank of 71% result in the weakest
The average daily trading volume of 32,000 shares is performance of all. Moreover, its Investment Metric ranking
dwarfed by its competitors and places it in last place. The of 64% was at the bottom of the rankings. Overall, the XTF
portfolio holds 28 positions matching XLU as the smallest scores are way below average for the utility category.
portfolio size. The top five holdings account for 19.5% of the With all its high-powered momentum and ranking criteria,
assets: NRG, AES, CNP, SRE and DTE. This ETF’s XTF its one-year negative return of -0.65% was very disappointing.
rating of 9.6 is very good, and its Structural Integrity rank of Moreover, its three-year return of 6.14% placed it next to last.
87% is mid-range. Lastly, its Investment Metric ranking of Another big letdown was the negative $137 million in cash
88% is second best. outflows over the past year, and $69 million outflows over
IDU’s annualized one-year return is lower than average three years, the worst one-year and second-worst three-year
at 1.25%, with its three-year return of 6.62% about one per- performance. About 37% of its capitalization was large-cap,
centage point below its competitors. On the negative side are 35% mid-cap, and 24% small-cap. The small-cap underper-
the outflows over the past year of -$2.5 million, but on the formance also was disappointing. Electric utilities accounted
FIGURE 3: ETF PRICE PERFORMANCE SINCE MAY 10, 2007. This chart excludes FUTY since it only debuted in October 2013. Vanguard Utilities had the highest
return, but the S&P 500 index surpassed it by 39 percentage points.
VAN EYDEN/CHASE OF VOLATILITY a checklist should never be rushed. Pilots review their
Continued from page 39 checklists carefully and systematically, which ensures
safety. A trader’s “nudge” is their trading plan, and it
volatility, the trader ends up with a larger stop (risk) with less also should never be rushed.
potential (reward). That makes it a trade motivated by emotion, Applying the Ulysses principle, learn to ignore (or manage):
rather than by a sound reward-to-risk ratio as determined by • social media noise
the trading plan.
Traders should not trade the “long bar” entry. Emotional • news
traders tend to make this trade because FOMO drives them to • human tendencies.
do it. It is a costly emotional entry, which can be prevented!
Conclusion
The anti-FOMO checklist While volatility is simply the rate of change in price, the
Here are some things to remember to help prevent the placing fact is, volatility can be small at times or large—and this is
of an emotionally driven trade: normal. Traders should not chase volatility if it is counter to
their trading plan. The correct course of action may be to
• Stick to a trading plan. The trader needs to meet the take no action.
trading plan requirements consistently with no second- Behavioral biases are a part of human nature, such as
guessing. FOMO. There is no avoiding them. However, with awareness
and strategy, there is a way to navigate them.
• Trading is a long-term game. Trading is about the next
Bringing back Ulysses again, a trader should only discard
series of trades and not just about a single trade; the
the beeswax and the rope once a valid trading signal is gener-
market will provide other opportunities.
ated by the system, a signal that is aligned to the trading plan.
• Knowledge of the markets is essential. Every trader Without a recognizable trading signal, there is no way for a
should study and understand the markets and do their trader to
justify a position, short or long.
analysis to make informed trades. The market is always
right; a trader should never have an opinion. The market Robert J. Van Eyden, PhD, is CEO of a stockbroking and
rewards a disciplined trader. portfolio management business. He is the author of The
• Take stock with a critical self-analysis. If you are suf- Money Fountain (2013). He may be reached at rvaneyden@
fering from anxiety, depression, irritation, or self-doubt, icloud.com.
then don’t trade!
Further reading
• Interact with a mentor or coach. Coaches or mentors
Herman, Dan [2000]. “Introducing Short-Term Brands: A New
should hold the trader accountable to the process rather
Branding Tool For A New Consumer Reality,” Journal of Brand
than to the outcome.
Management, 7 (5):. DOI:10.1057/bm.2000.23.
• The use of nudges. Nudges help the trader to put Lauren Foster, quoting Greg Davies, https://blogs.cfainstitute.org/
themselves in high-probability situations to succeed, investor/2012/02/17/avoiding-the-siren-song-of-emotions-notes-
thus ignoring FOMO. Nobel Prize-winning economist from-the-wealth-management-conference/#.T0AHtponJKY.
Richard Thaler and his co-author introduced the con- wordpress
cept of “nudge” a few years ago. In essence, a nudge is Thaler, Richard H., & Cass R. Sunstein [ 2008]. Nudge: Improving De-
a checklist. The checklist should be automatically fol- cisions About Health, Wealth, And Happiness, Caravan Books.
lowed to ensure that the best outcome is achieved every Van Eyden, Robert J. [2013]. The Money Fountain.
time, in order to override human tendencies. Similar
to the way a pilot reviews a checklist before takeoff,
July 2020 • Technical Analysis of Stocks
tockS & CommoditieS • 45
commodities
Explore Your Options
Got a question about options? Jay Kaeppel has over three decades of experi-
ence in the options markets. He was a head trader for a CTA firm, an options
trading software developer, and is a portfolio manager for an investment
management firm. He also spent several years writing a weekly column titled
“Kaeppel’s Corner” and now publishes a blog, “Jay On The Markets” (http://
jayonthemarkets.com). He is the author of several books, including The Four
Biggest Mistakes In Option Trading; The Option Trader’s Guide To Probability,
Volatility, And Timing; and Seasonal Stock Market Trends. Send your ques-
tions or topic suggestions to Jay Kaeppel at [email protected]. Selected Jay Kaeppel
questions will appear in a future issue of S&C.
OPTIONSANALYSIS.COM
especially useful if you simply think that
a stock that you hold is in a longer-term
uptrend but is due for a reasonable price
pullback in the near term.
A collar involves: FIGURE 1: TLT COLLAR POSITION DETAILS
Ticker TLT
In this example trade, Trader A holds
100 shares of ticker TLT, an ETF that
tracks the long-term treasury bond. FIGURE 2: TLT COLLAR POSITION RISK CURVES
+ L1 * ( 1 + S1 ) * Trunc[count + 1]
- S1 * Trunc[count + 2] ;
end ;
F TRADESTATION: JULY 2020 TRADERS’ TIPS CODE
In his article “Truncated Indicators” in this issue, author John BPT = Trunc[1]; //convert to a variable
Ehlers introduces a method that can be used to modify some Plot1(BP, "BP Filt" ) ;
indicators, improving how accurately they are able to track Plot2( BPT, "Trunc BP Filt") ;
and respond to price action. By limiting the data range, that Plot4( 0, "ZL" ) ;
is, truncating the data, indicators may be able to better handle Strategy: Truncated BP Filter
extreme price events. A reasonable goal, especially during
times of high volatility. // Truncated BP Filter
// John F. Ehlers
Here, we are providing TradeStation EasyLanguage code // TASC JUL 2020
for both an indicator and strategy based on the author’s
inputs:
work. Period( 20 ),
Bandwidth( .1 ),
Indicator: Truncated BP Filter
Length( 10 ) ;
// Truncated BP Filter
variables:
// John F. Ehlers
L1( 0 ), G1( 0 ), S1( 0 ),
// TASC JUL 2020
count( 0 ), BP( 0 ), BPT( 0 ) ;
arrays:
inputs:
Trunc[100]( 0 ) ;
Period( 20 ),
Bandwidth( .1 ),
//Standard Bandpass
Length( 10 ) ;
L1 = Cosine( 360 / Period ) ;
variables:
G1 = Cosine( Bandwidth * 360 / Period ) ;
L1( 0 ), G1( 0 ), S1( 0 ),
S1 = 1 / G1 - SquareRoot( 1 / ( G1 * G1 ) - 1 ) ;
count( 0 ), BP( 0 ), BPT( 0 ) ;
BP = .5 * ( 1 - S1 ) * ( Close - Close[2] )
arrays:
Trunc[100]( 0 ) ;
//Standard Bandpass
L1 = Cosine( 360 / Period ) ;
G1 = Cosine( Bandwidth * 360 / Period ) ;
S1 = 1 / G1 - SquareRoot( 1 / ( G1 * G1 ) - 1 ) ;
BP = .5 * ( 1 - S1 ) * ( Close - Close[2] )
+ L1 * ( 1 + S1 ) * BP[1] - S1 * BP[2] ;
//Truncated Bandpass
Trunc[Length + 2] = 0 ;
Trunc[Length + 1] = 0 ;
//Truncated Bandpass
Trunc[Length + 2] = 0 ;
Trunc[Length + 1] = 0 ;
function main(Period,Length,Bandwidth) {
if (bVersion == null) bVersion = verify();
if (bVersion == false) return;
bInit = true;
}
Once the file is downloaded, you can import the indicator
into NinjaTader 8 from within the Control Center by select-
if (getCurrentBarCount() <= Length) return; ing Tools → Import → NinjaScript Add-On and then select-
if (getBarState() == BARSTATE_NEWBAR) {
BP_2 = BP_1; ing the downloaded file for NinjaTrader 8. To import in Nin-
BP_1 = BP; jaTrader 7, from within the Control Center window, select
} the menu File → Utilities → Import NinjaScript and select
if (getCurrentBarCount() <= 3) BP = 0; the downloaded file.
else BP = .5 * (1 - S1) * (xClose.getValue(0) - xClose.getVal- You can review the indicator’s source code in NinjaTrader
ue(-2)) + L1 * (1 + S1) * BP_1 - S1 * BP_2; 8 by selecting the menu New → NinjaScript Editor → Indi-
//Stack the Trunc Array cators from within the Control Center window and select-
for (var i = 100; i > 1; i--) { ing the BandPassFilter file. You can review the indicator’s
Trunc[i] = Trunc[i-1]
} source code in NinjaTrader 7 by selecting the menu Tools →
Edit NinjaScript → Indicator from within the Control Center
//Truncated Bandpass window and selecting the BandPassFilter file.
Trunc[Length + 2] = 0;
Trunc[Length + 1] = 0; A sample chart is shown in Figure 5.
for (var i = Length; i > 0; i--) { NinjaScript uses compiled DLLs that run native, not in-
Trunc[i] = .5 * (1 - S1) * (xClose.getValue(-i + 1) - xClose. terpreted, to provide you with the highest performance pos-
getValue(-i - 1)) + L1 * (1 + S1) * Trunc[i + 1] - S1 * Trunc[i + 2];
} sible.
—Jim Dooms
BPT = Trunc[1] //convert to a variable NinjaTrader, LLC
return [BP, BPT]
www.ninjatrader.com
}
function verify(){
var b = false;
if (getBuildNumber() < 779){
return b;
FIGURE 5: NINJATRADER. The BandPassFilter indicator is shown on SPY from
}
December 2018 to December 2019.
F TRADE NAVIGATOR: JULY 2020 F MICROSOFT EXCEL: JULY 2020 TRADERS’ TIPS CODE
TRADERS’ TIPS CODE In his article in this issue, “Truncated Indicators,” John Ehlers
In “Truncated Indicators” in this issue, takes us aside to look at the impact of sharp price movements
author John Ehlers presents a truncation technique for cycle on two fundamentally different types of filters: finite impulse
indicators and demonstrates the technique using a truncated response, and infinite impulse response filters. Given recent
bandpass filter. market conditions, this is a very well timed subject.
To install these new tools into Trade Navigator, first obtain In this article, Ehlers suggests “truncation” as an approach
54 • July 2020 • Technical Analysis of Stocks & Commodities
to the way the trader calculates fil-
ters. He explains why truncation is
not appropriate for finite impulse
response filters but why trunca-
tion can be beneficial to infinite
impulse response filters. He then
explains how to apply truncation
to infinite impulse response filters
using his bandpass filter as an ex-
ample.
Figure 13 replicates the figure
from his article using Excel. FIGURE 13: EXCEL. Bandpass and truncated bandpass filters.
Next, it seemed appropriate to
take a look at this concept within
a filter or indicator that uses the
normal bandpass filter as a start-
ing point.
A quick dive into my Traders’
Tips spreadsheet archive brought
me to an August 2019 S&C article
by John Ehlers titled “A Peek Into
The Future.” That article intro-
duced the Voss predictive filter,
where the first step in the Voss FIGURE 14: EXCEL. Voss predictive filter. Note: The Voss article used a wider bandwidth setting of 0.25.
computation is the bandpass fil-
ter.
Three columns of cell formulas
make up the Voss filter and I al-
ready have the bandpass column.
So it is a simple exercise to port
the Voss filter forward to the cur-
rent spreadsheet to demonstrate
the result of bandpass truncation
in a more complex environment.
Figure 14 replicates the chart
from Ehlers’ August 2019 article.
Figure 15 is the same chart using FIGURE 15: EXCEL. Voss filter calculated using the truncated bandpass filter.
the truncated bandpass filter as
the first stage of Voss calculations. Figure 16 below puts the as a feedback input.
two Voss calculations side by side. Truncation requires that we break that backward reference
At this writing, we are well into the impact that Covid-19 at the specified truncation length. The EasyLanguage code
is having on the world economy. Figure 17 takes a look at the given in the sidebar in his article introduces a pair of zero
recent S&P 500 index with the Voss filter and the truncated feedback values just beyond the truncation length to provide
Voss filter. that break.
Between the truncated version needing the two oldest
Some technical explanations behind the creation of this feedback values to be zero, the complexity of the bandpass
spreadsheet filter formula itself, and the requirement that it be calculated
User-defined function: BPTrunc—A VBA code implementa- fresh at each bar, I was stymied as to how to create a purely
tion of Ehlers’ truncated bandpass filter. Excel cell formula computation for this.
In his article in this issue, Ehlers mentions “mathematical Perhaps a better mathematician than I could figure out a
sleight of hand tricks.” refactoring of the bandpass filter, similar to Ehlers’ discus-
In the time available, I have not been able to come up with sion in his article of the “transfer response of a filter,” that
any mathematical jujitsu that would keep an implementation would allow this bandpass truncation to be coded with na-
of the truncated bandpass filter entirely within native Excel tive Excel cell formula capabilities.
cell formula capabilities. The problem is due to the bandpass Instead, I have used VBA to create a user-defined function
filter formulation requiring two of its previous output values (UDF)—“BPTrunc”—that can be used directly in complex
July 2020 • Technical Analysis of Stocks & Commodities • 55
cell formulas.
The only real drawback to the
UDF approach is that it is inher-
ently slower to calculate than a
native cell formula solution. Thus,
for this spreadsheet, there is a no-
ticeable delay in response when
the user changes any of the con-
trol values or buttons.
For this spreadsheet, I have cho-
sen to use BPTrunc in a column by
itself to facilitate on-chart side by FIGURE 16: EXCEL. Voss filter and truncated Voss filter.
side comparisons. But it is not a re-
quirement of BPTrunc to be used
standalone in a cell formula. The
BPTrunc function is portable.
The following is for those com-
fortable with VBA and who might
wish to try the truncated bandpass
filter in other spreadsheets that
have used the bandpass filter.
The easiest approach is to have
the VBA editor export a copy of
the module from this spreadsheet
FIGURE 17: EXCEL. Forward space the chart in Figure 16 to today.
to your hard drive.
Close this spreadsheet. Open
your target spreadsheet and use the VBA editor to import download it, follow these steps:
the “truncated bandpass” module from where you stored it. • Right-click on the Excel file link, then
Then modify cell formulas that use the bandpass filter, simi- • Select “save target as” to place a copy of the spreadsheet
lar to what I have done here for the Voss filter calculation. file on your hard drive.
—Ron McAllister
To download this spreadsheet Excel and VBA programmer
The spreadsheet file for this Traders’ Tip can be downloaded [email protected]
from Traders.com in the Traders’ Tips area. To successfully
LETTERS TO S&C Modified (OBVM)”]. Historically, I have you for his articles. In my opinion they
Continued from page 7 not had a lot of success using OBV (and are some of the very best published by
other volume indicators), but it should StockS & commoditieS. I hope he
an updated volume-based indicator to be interesting. continues to submit his ideas.
use and I think OBVM is exactly what I have had the most success lately E.K.
I need. using a variation of his exponential
Thanks again and best wishes. deviation bands. Author Vitali Apirine replies:
F.D. One of the things I have struggled a bit Thank you for the high evaluation of
Author Vitali Apirine replies: with over the years is using shorter-term my articles.
Thank you for the good words about my indicators with some kind of a trend filter We trade in a high-risk market right
latest article. Happy trading! (such as only taking long trades when now. As I write this, the Volatility Index
the trend is up, or short when the trend (VIX) is higher than 50 every day. I
ON-BALANCE VOLUME MODIFIED is down). I have used his moving average am careful with any indicators in such
(OBVM) stochastic as a trend filter at times, and I a time.
Editor, very much like this indicator. However, No one knows when the threat from
Thank you very much for Vitali Apirine’s like all trend filters, I get frustrated when the coronavirus will pass. Thank you
superb articles. Over the years I have it lags. I am wondering if there any trend again and stay safe.
found his articles helpful and fun to filters that he uses that he particularly
use. I will play around with his latest likes and finds useful?
idea about OBV [“On-Balance Volume In any case, I wanted to write to thank
56 • July 2020 • Technical Analysis of Stocks & Commodities
Free Information From Advertisers
Advertiser Page Advertiser Page How to reach us
Brokerages Publications For questions, address changes, or
ordering information for Technical
Charles Schwab 5 Stocks & Commodities 2, 63
Analysis of Stocks & Commodities
Schwab.com/tradefutures Store.Traders.com, Traders.com
magazine and its online publications:
Interactive Brokers 3 Software Toll-free 800 832-4642
ibkr.com/progateway MetaStock 11 (800-Technical) or:
Ninjatrader 64 MetaStock.com/TASC 206 938-0570.
ninjatrader.com Ninjatrader 64 Email us at:
TD Ameritrade 29 ninjatrader.com [email protected].
tdameritrade.com/thinkorswim Websites Or write to us at:
courses/seminars Stocks & Commodities 2, 63 4757 California Ave. SW,
Store.Traders.com, Traders.com Seattle, WA 98116-4499.
MoneyShow 19
Online.MoneyShow.com Do your magazines arrive tattered
and torn? Polybagging of magazines
(domestic delivery) is available for
$6/year.
Single back issues from the current
year (subject to availability) are $8
prepaid. Subscribers have access to
Editorial Resource Index
our digital archive of all past articles.
TradeStation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 06 The Zorro Project.. . . . . . . . . . . . . . . . . . . . . . . . . . . . 53 Individual articles can be purchased
Tom Bulkowski.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 TradersStudio . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54 from the Online Store at our website,
MetaTrader 4 (MetaQuotes Software Corp.) .. . . 24 Trade Navigator (Genesis Financial Tech.) . . . . 54 Traders.com.
eSignal .. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 Editorial feedback
xtf.com.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41 We always want to know more about
StockCharts.com.. . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 the needs of our readers: What kinds of
articles would you like to see more of?
OptionsAnalysis.com.. . . . . . . . . . . . . . . . . . . . . . . 46
What do you find useful? Address your
Wealth-Lab.com. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
written questions and comments to edi-
NinjaTrader. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 [email protected] or to: Editor, Stocks
Quantacula Studio .. . . . . . . . . . . . . . . . . . . . . . . . . . 52 & Commodities, 4757 California Ave
NeuroShell Trader (Ward Systems Group) .. . . 52 SW, Seattle, WA 98116-4499. Sorry, we
cannot perform research on individual
financial questions not related to this
For more information about our advertisers, go to Traders.com/reader where magazine and we cannot respond to
you will find the alphabetized list of this month’s advertisers. For reference, the all mail. Letters or emails containing
list is also printed above along with the corresponding page number for each ad. questions or information that other
Just follow the simple directions below and the advertisers will get your requests readers may enjoy or that relate to
the same day! our articles or technical analysis top-
ics may be published in our Letters to
Step 1: Go to Traders.com/reader and S&C column.
scroll through the list of our current month’s Join us on Facebook
advertisers.Click the box for each advertiser at www.facebook.com/
you’d like to hear from. At the bottom of STOCKSandCOMMODITIES
the list, click Continue when finished.
Follow us on Twitter
Step 2: Fill out your contact information @STOCKSandCOMM
and click Send Request. Your request will
then be sent to the advertisers you selected.
To receive information on the products and services listed in the Editorial
and Advertisers’ Indexes, go to: Traders.com/reader/ These indexes are
And that’s it! published solely as a convenience. While every effort is made to maintain
accuracy, last-minute changes may result in omissions or errors.
T
rading liquidity is often over- very high volumes. The greatest number three-year period. Thus, all numbers in
looked as a key technical of dots indicates the greatest activity; this column have an equal dollar value.
measurement in the analysis futures with one or no dots show little Columns indicating percent margin
and selection of commodity activity and are therefore less desirable and effective percent margin provide
futures. The following explains how to for speculators. a helpful comparison for traders who
read the futures liquidity chart pub- Courtesy of CBOT wish to place their margin money ef-
lished by Technical Analysis of Stocks ficiently. The effective percent margin
& Commodities every month. is determined by dividing the margin
value ($) by the three-year price range of
Commodity futures contract dollar value, and then multiply-
The futures liquidity chart shown be- ing by one hundred.
low is intended to rank publicly traded
futures contracts in order of liquidity. Stocks
Relative contract liquidity is indicated Trading liquidity has a significant ef-
by the number of dots on the right-hand fect on the change in price of a secu-
side of the chart. rity. Theoretically, trading activity can
This liquidity ranking is produced by serve as a proxy for trading liquidity
multiplying contract point value times All futures listed are weighted equally and equals the total volume for a given
the maximum conceivable price motion under “contracts to trade for equal dol- period expressed as a percentage of the
(based on the past three years’ historical lar profit.” This is done by multiplying total number of shares outstanding. This
data) times the contract’s open interest contract value times the maximum pos- value can be thought of as the turnover
times a factor (usually 1 to 4) for low or sible change in price observed in the last rate of a firm’s shares outstanding.
[email protected]
TO ADVERTISE CONTACT:
Ed Schramm
Technical Trading Signals [email protected] • (206) 938 0570
Swing Trading & Investing
www.TheTechnicalTraders.com TRADERS'
RESOURCE
The information in Traders’ Resource is the most accurate at the time of posting and is subject to change. Because the vendors posting to Traders’ Resource are responsible for their own listing, Technical Analysis, Inc. declines any and all
liability for any representations made by the businesses and individuals listed. Nor can Technical Analysis, Inc. endorse any business or individual listed on Traders’ Resource. Technical Analysis, Inc. makes no warranties, express or im-
plied, as to the accuracy and reliability of claims herein. You agree to release Technical Analysis, Inc., together with its respective employees, agents, officers, directors and shareholders, from any and all liability and obligations whatsoever
in connection with or arising from your use of Traders’ Resource. If at any time you are not happy with the information posted to Traders’ Resource or object to any material within Traders’ Resource, your sole remedy is to cease using it. This
list is updated frequently. If you are aware of a business that should be listed, please email us at [email protected].
TRADING! A PERFECT STAY-AT- ground. Over the years, I have worked spend everything they make, as tempt-
HOME JOB? with people from many different indus- ing as that may be. Building adequate
Whether you are just starting to look into tries and fields of expertise who were capital reserves will allow you to ac-
trading or are already an active career interested in pursuing trading as a career. complish more.
trader, have you given enough thought They tended to share a common message: Some may be attracted to the excite-
to what contributes to the viability of Despite being in work that they trained ment of the markets—the thrill of the
trading? Here, I’ll offer some reflections to do or have credentials in, they disliked trade and the endorphins that can result.
on what I believe it takes to be success- or even hated what they did each day. But the money a trader makes actually
ful at trading. I hope it resonates with Adding to that may be a dislike of the comes from doing the boring things: the
you and also gives you some ideas on daily commute, the expense of parking hours poured into research & analysis,
how you can help ensure more success or transit, a dislike of their bosses or the preparation, the planning, reviewing
in your trading career, especially for coworkers, corporate politics, and so on. & journaling, monitoring positions, ag-
newer traders. Some of those challenges may end up gregating data, testing and more testing.
being resolved post-pandemic as more It also comes from being able to process
Getting started in trading? companies shift to remote work. But not and manage stress, and from developing
These days, as the pandemic continues all jobs can be performed from home. mental and emotional strength for each
and the economy is suppressed, some new day and to meet the myriad of events
people are considering getting into that can arise.
trading. Maybe they have lost their job Trading is a probability- Let me offer this quote from our
temporarily or permanently. Maybe they based endeavor and StockOdds podcast episode 2, which
are rediscovering their entrepreneurial the fact is, there are presented a talk with Dennis Dick, CFA,
spirit that has been laid to waste with proprietary trader with Bright Trading,
the pandemic. Or maybe they are just no guarantees, no and host of the Benzinga premarket
ready for a change, and a trading career safety net, and no set morning show:
sounds plausible. After all, as the pan- salary.
demic forces many to stay home, trading [Having] a trading career affects
may offer to some an opportunity to stay your thinking—the way I analyze
home and still make money. Daytrading has often been advertised everything in my life. It’s risk–return.
as a career in which someone can pay I look at, you know, what’s the risk?
Volatile markets themselves a good income within a year. What’s the reward? And I analyze even
Many investors are finding the investable Is this reality? Some traders have done normal decisions and daily activities
landscape uncertain and the volatility quite well early on in their trading career, [that way].
high, which may cause them to shorten but most take many years to develop
their timeframes and rotate positions the knowledge, experience, and skills Why do you want to be a trader?
more frequently, which leads to increased necessary to pull money from the market Being a trader has been compared to
activity and inventory turnover. They consistently. As with most skills, being being an athlete, since trading is similar
may be trading more frequently rather able to trade profitably and consistently to an individual sport. Trading is also a
than sitting on positions for long dura- takes many hours of practice. business, an art form, a job that requires
tions. Of course, all retail traders and attention and focus, and it’s also a prob-
investors need to be mindful of the tax The less dreamy aspects of trading ability game. As with any accomplish-
consequences of buying and selling New traders also should realize the ment, doing that “one thing well” can
securities. importance of building capital reserves, bring happiness and contentment, but
and many new traders don’t do this ad- the journey of sacrifice and the hard-
The dream equately. Even if someone starts making ships along the way are underestimated
Becoming a successful trader is the a little money while they are developing by most new entrants.
dream of many, regardless of back- their skills, it’s important that they don’t Yes, there are perks, but it is not fair
60 • July 2020 • Technical Analysis of Stocks & Commodities
Trading Perspectives
and balanced to only present the ben- day I might be making 200 trades. So expenses like commissions, losses
efits. So first, let’s run down some of we’re trading quite a bit. And inevitably from mistakes, losses from events
the benefits: in trouble every single day! You can’t be beyond their control, and edges that
Traders may be able to trade from any- right 100 percent of the time, so you’ve diminish—even though the trader
where as long as they have good internet got to learn how to work yourself out is doing the right things. When the
connectivity, giving them freedom to be of trouble. markets are changing and strategies
where they want. Traders may be able “I’ve seen this through the years: The are not performing, it is challenging
to set their own hours, which lets them traders that aren’t willing to take a loss to know when to shelve it or whether
attend events or schedule vacations when will struggle in this business and usu- to continue. If you do shelve it and
they want. There are no employees to ally blow up their account very quickly. pick up another strategy, then testing
have to hire and look after. No suit and Traders add to losers, thinking ‘it’s got that new strategy also costs money,
tie is needed as with many finance-related to come back.’ [But the market] doesn’t even if it’s done perfectly, since you
jobs; trade in your pajamas if you want! have to do anything. The markets can have to prove out the strategy, usually
And finally, the ultimate benefit and what stay irrational much longer than you can with real money at some point.
everyone who enters trading dreams of: stay solvent, and this applies to daytrad- • You must have good data. It needs
no cap on your potential income. ing more than anything. to be accurate, and with corporate
But are you ready for all the chal- “The number one thing is when I en- adjustments applied.
lenges, the surprises, and the realities ter a trade, I’m not thinking about how
of trading? Do you understand that you much money I can make. I enter the trade Are there off-the-shelf strategies that
can do the wrong thing and get great thinking about how much money I can work?
results or can do the right thing and get lose. I am really a risk manager. I put It’s really about the validation of new or
terrible results? my capital to work when I see the risk existing strategies, no matter whether
There are many setbacks on the road to relatively low or I see myself having a you get them from a book, a friend, a
becoming a successful trader, depending website, or even from an advanced quant
on your level of education, experience, site. Do they work? That is for you to test
skill, and discipline. What you may Discipline is the and prove to yourself. If you do not take
need to overcome will vary with the personal ownership of the idea and make
individual. overwhelming it fit for you and where you are at, you
Trading results also tend to clump, key factor in any may fail even if the strategy works.
with setbacks and dry spells along the individual’s success in I’ve seen a common theme in many
way. Unfortunately, having a good work becoming consistently working strategies: These strategies are
ethic will not guarantee success. You also long/short orientated, and the traders
need to have a gaming theory mindset. profitable. using them are focused on taking slices
You can have an edge, but you may from the noise rather than trying to hit
have to live through many times when it homeruns. These often focus on com-
does not work as intended. Trading is a potential out, but I always enter the trade pounding rather than on one-off setups
probability-based endeavor and the fact having a contingency plan.” from a signal-based strategy. If you are
is, there are no guarantees, no safety net, trading for a living, you will want to be
and no set salary. What is needed? able to scale and take the same types of
In my view, here is what is needed to be trades repeatedly.
What does it take to be a consistently a successful trader:
profitable trader? How long can an edge last if a trader
Discipline is the overwhelming key fac- • Having a trading plan with all the discovers one?
tor in any individual’s success in becom- essential ingredients: profit expec- Edges usually do not last as long as a
ing consistently profitable. Many people tancies, loss parameters, entry and trader would like. There is very little
want to go into trading without fully exit guidelines, position sizing, and low-hanging fruit these days but there are
understanding the level of commitment models or variations of strategies for still many soft edges, which come and
it takes to make profits in the long run. the context of the day. go as market regimes shift and change.
It takes more dedication and discipline • Discipline, diligence, and persever- I am a firm believer that many past
than most think. ance. No matter what the difficul- strategies that are thought to no longer
“A lot of traders get themselves into ties are, overcome them as best work can be dusted off and repurposed,
trouble and they don’t know how to work you can. looking at them through today’s lenses.
themselves out of trouble,” continues • Capital. As with any business, you So traders can consider: What were the
Dennis Dick in our podcast episode. can fail by not having enough for past obstacles for some strategies that
“On any given day I might make 50 or the journey. The trader must ac- today’s technological developments
100 trades, or maybe on a really crazy count for fixed expenses, variable can solve?
July 2020 • Technical Analysis of Stocks & Commodities • 61
Trading Perspectives
Pair trading strategies have been helpful tool, and you may even want to
widely used by professional traders for If you do not take add basic to advanced Python program-
many years. (I’ve discussed pair trading ming to your mix of skills, as this skill
strategies in this column several times personal ownership of goes a long way in gathering data as well
before.) There is the need to always an idea and make it fit as executing and managing positions.
adapt and understand the dynamics of for you and where you Python can also assist you in creating
outperformers versus underperformers are at, you may fail your own systems to trade with.
in peer groups. Do not get caught in the
trap of thinking there are guarantees for even if the strategy Treat trading like a business
trades. Weak stocks can catch up to strong works. It is important to educate yourself
stocks in time or they could continue before taking on the risks of trading in
to diverge. Fundamentals, statistical the markets, just as you would not start
measures, technicals, sentiment, and trading strategies have stood the test of a business without extensive research,
news all play a role in how things play time and have contributed to the long calculations, and planning. I am a
out. These forces must be considered for and successful careers of some profes- proponent of investing in yourself first
optimum results. sional traders. and having an opportunity to do what
Pair trading is only limited to one’s you love.
imagination, as there are so many What kind of technology or tech skills If you think trading is for you or if you
combinations that one can employ, and are needed? need help to improve your trading career,
each pair acts like a trading business Since everything is online these days, I welcome that conversation.
employee: Either it is doing a great job there’s no question about it: computer I also hope you will check out our new
for us, or we may have to tell that position skills are needed for trading. Excel (or podcast series.
that it’s “fired.” In my observation, pair another spreadsheet program) can be a
A subscription to Technical Analysis of Stocks & Commodities magazine gets you so much more than just a
magazine! Every subscriber gets full access to the magazine in digital format. No waiting for the mail to be deliv-
ered — just log on to Traders.com on any internet-capable device to read any issue or article we’ve ever published,
either in your browser, or downloaded to your device as a PDF for reading anytime, anywhere.
ninjatrader.com