Monthly Coppock Guide.afl
上传用户:shiqiang
上传日期:2009-06-12
资源大小:1289k
文件大小:10k
源码类别:

金融证券系统

开发平台:

Others

  1. //------------------------------------------------------------------------------
  2. //
  3. //  Formula Name:    Monthly Coppock Guide
  4. //  Author/Uploader: Brett Forrester 
  5. //  E-mail:          brett@surewest.net
  6. //  Date/Time Added: 2001-06-27 21:53:51
  7. //  Origin:          Stocks & Commodities V. 11:3 (125-126): The Coppock Guide by Tim Hayes
  8. //  Keywords:        Coppock, market bottoms, ROC, DJIA,
  9. //  Level:           basic
  10. //  Flags:           indicator
  11. //  Formula URL:     http://www.amibroker.com/library/formula.php?id=36
  12. //  Details URL:     http://www.amibroker.com/library/detail.php?id=36
  13. //
  14. //------------------------------------------------------------------------------
  15. //
  16. //  One of the best megaphones of market action is the Coppock guide, a
  17. //  long-term price momentum indicator that effectively filters out short-term
  18. //  and
  19. //
  20. //  intermediate-term market swings to issue a clear message on the market's
  21. //  underlying long-term trend. Tim Hayes of Ned Davis Research reports on
  22. //
  23. //  the success of this indicator.
  24. //
  25. //  The Coppock guide, which was developed in the early 1960s by technician
  26. //  E.S.C. Coppock, was designed as a guide by which to identify major
  27. //
  28. //  market bottoms, with the specification that buy signals would be generated
  29. //  when the 10-month smoothing dropped below zero and then reversed
  30. //
  31. //  upward. Even though Coppock developed the index and buy rule well before
  32. //  the arrival of computerized indicator analysis, the optimal buy rule
  33. //
  34. //  determined after number crunching by our computers is not far off from
  35. //  Coppock's original rule; the most profitable long positions since July 1957
  36. //
  37. //  would have been generated by buying whenever the index dropped below 1.3
  38. //  and then reversed upward.
  39. //
  40. //  The Coppock guide is calculated by first determining the 14-month rate of
  41. //  price change of the Dow Jones Industrial Average's (DJIA) monthly close,
  42. //
  43. //  then adding that rate to the closing's 11-month rate of price change, and
  44. //  finally smoothing the result with a 10-month front-weighted moving average.
  45. //
  46. //  The Coppock guide is also an effective indicator of market tops, with sell
  47. //  signals flashed when the index rises above 1.3, tops out and then drops by
  48. //
  49. //  l l points. In fact, as shown in Figure 1 in the upper lefthand corner, an
  50. //  investor following the indicator's signals would have profited in 90% of
  51. //  the cases,
  52. //
  53. //  earning 9.2% compounded annually, 70.4% better than the comparable per
  54. //  annum return of 5.4% produced through a buy-and-hold approach over the
  55. //
  56. //  same timeframe. Using this single indicator, an investor's $10,000
  57. //  investment on July 31, 1957, would have grown to $223,152 by December 31,
  58. //  1992.
  59. //
  60. //  OF PRACTICAL USE
  61. //
  62. //  So, you may say, the hypothetical results look promising, but is the
  63. //  indicator of any practical use right now? The answer is a resounding
  64. //  affirmative. As
  65. //
  66. //  can be seen on Figure 1, a long-term momentum divergence has been under way
  67. //  since the DJIA's 1986 highs occurred without confirmation in the form
  68. //
  69. //  of new highs on the Coppock guide, which instead remained below its 1983
  70. //  high. Likewise, the DJIA's highs in 1987, 1989 and in 1992 all occurred
  71. //  with
  72. //
  73. //  the Coppock guide at successively lower levels.
  74. //
  75. //  While the long-term divergence is a negative omen, so is the Coppock
  76. //  guide's March 1992 high itself, as peaks in the Coppock guide have led, or
  77. //  slightly
  78. //
  79. //  lagged, 10 of the past 12 bull market tops (which are defined as a peak
  80. //  following a rise of at least 30% or 15% after 155 days)(Figure 2). Among
  81. //  the seven
  82. //
  83. //  cases in which the Coppock guide led, the median lead time was 6.5 months.
  84. //  And of the three lagging, only one (the peak following the bull market top
  85. //  of
  86. //
  87. //  September 1978) lagged by more than six months. The median for all 12 cases
  88. //  has been a lead time of 3.4 months.
  89. //
  90. //  ASSESSING THE MARKET
  91. //
  92. //  The most significant implication of the current level on the Coppock guide
  93. //  is that it flashed a sell signal with November 1992's close. To prevent a
  94. //  sell,
  95. //
  96. //  the DJIA would have had to close that month at above 3485. When assessing
  97. //  the market, it's always a good idea to remember the old saying that the
  98. //
  99. //  tape tells all. And what the tape is telling us by way of the Coppock guide
  100. //  is that momentum has continued to wane, the market is tired and the uptrend
  101. //
  102. //  is turning into a downtrend. So keep those warnings in mind as you monitor
  103. //  the markets.
  104. //
  105. //  Tim Hayes is the senior international strategist for Ned Davis Research and
  106. //  writes the "Stock Market Strategy" and "International Currents"
  107. //  newsletters.
  108. //
  109. //  Ned Davis Research. PO Box 1287, Nokomis, FL 34274-1287.
  110. //
  111. //  Figures 2 Copyright (c) Technical Analysis Inc.
  112. //
  113. //------------------------------------------------------------------------------
  114. /*
  115. Stocks & Commodities V. 11:3 (125-126): The Coppock Guide by Tim Hayes
  116. One of the best megaphones of market action is the Coppock guide, a long-term price momentum indicator that effectively filters out short-term and 
  117. intermediate-term market swings to issue a clear message on the market's underlying long-term trend. Tim Hayes of Ned Davis Research reports on 
  118. the success of this indicator.
  119. The Coppock guide, which was developed in the early 1960s by technician E.S.C. Coppock, was designed as a guide by which to identify major 
  120. market bottoms, with the specification that buy signals would be generated when the 10-month smoothing dropped below zero and then reversed 
  121. upward. Even though Coppock developed the index and buy rule well before the arrival of computerized indicator analysis, the optimal buy rule 
  122. determined after number crunching by our computers is not far off from Coppock's original rule; the most profitable long positions since July 1957 
  123. would have been generated by buying whenever the index dropped below 1.3 and then reversed upward.
  124. The Coppock guide is calculated by first determining the 14-month rate of price change of the Dow Jones Industrial Average's (DJIA) monthly close,
  125. then adding that rate to the closing's 11-month rate of price change, and finally smoothing the result with a 10-month front-weighted moving average.
  126. The Coppock guide is also an effective indicator of market tops, with sell signals flashed when the index rises above 1.3, tops out and then drops by
  127. l l points. In fact, as shown in Figure 1 in the upper lefthand corner, an investor following the indicator's signals would have profited in 90% of the cases,
  128. earning 9.2% compounded annually, 70.4% better than the comparable per annum return of 5.4% produced through a buy-and-hold approach over the 
  129. same timeframe. Using this single indicator, an investor's $10,000 investment on July 31, 1957, would have grown to $223,152 by December 31, 1992.
  130. OF PRACTICAL USE
  131. So, you may say, the hypothetical results look promising, but is the indicator of any practical use right now? The answer is a resounding affirmative. As 
  132. can be seen on Figure 1, a long-term momentum divergence has been under way since the DJIA's 1986 highs occurred without confirmation in the form
  133. of new highs on the Coppock guide, which instead remained below its 1983 high. Likewise, the DJIA's highs in 1987, 1989 and in 1992 all occurred with
  134. the Coppock guide at successively lower levels.
  135. While the long-term divergence is a negative omen, so is the Coppock guide's March 1992 high itself, as peaks in the Coppock guide have led, or slightly
  136. lagged, 10 of the past 12 bull market tops (which are defined as a peak following a rise of at least 30% or 15% after 155 days)(Figure 2). Among the seven 
  137. cases in which the Coppock guide led, the median lead time was 6.5 months. And of the three lagging, only one (the peak following the bull market top of 
  138. September 1978) lagged by more than six months. The median for all 12 cases has been a lead time of 3.4 months.
  139. ASSESSING THE MARKET
  140. The most significant implication of the current level on the Coppock guide is that it flashed a sell signal with November 1992's close. To prevent a sell, 
  141. the DJIA would have had to close that month at above 3485. When assessing the market, it's always a good idea to remember the old saying that the 
  142. tape tells all. And what the tape is telling us by way of the Coppock guide is that momentum has continued to wane, the market is tired and the uptrend 
  143. is turning into a downtrend. So keep those warnings in mind as you monitor the markets.
  144. Tim Hayes is the senior international strategist for Ned Davis Research and writes the "Stock Market Strategy" and "International Currents" newsletters.
  145. Ned Davis Research. PO Box 1287, Nokomis, FL 34274-1287.
  146. Figures 2 Copyright (c) Technical Analysis Inc.
  147. Figure 1 displayed here