Trend Following: a Machine Learning Approach

Total Page:16

File Type:pdf, Size:1020Kb

Trend Following: a Machine Learning Approach Stanford University MS&E 448 Big Financial Data and Algorithmic Trading Trend Following: A Machine Learning Approach Authors: Art Paspanthong, Divya Saini, Joe Taglic, Raghav Tibrewala, Will Vithayapalert June 10, 2019 Trend Following Strategy Contents Introduction and Strategy 3 Data 3 Investment Universe Selection . .3 Data Exploration . .3 Feature Generation 3 Continuous Variables . .4 Categorical Variables . .4 Models 4 Linear Model . .4 Results . .4 RNN Model . .6 Results . .7 Neural Net Model . .8 Comparison with Linear Regression . .9 Results . 10 Summary and Comparison . 11 Portfolio Construction 11 Portfolio Optimizer . 11 Stop Loss . 12 Risk Management Philosophy 13 Portfolio Results 13 Baseline Strategy . 13 Comparison of Results from Different Models . 13 Execution Discussion 14 Retrospective Discussion 14 Page 1 of 15 Trend Following Strategy List of Figures 1 Correlation of Returns of 36 Different Assets . .3 2 Predicted versus actual values of unregularized linear regression model. .4 3 Histogram of error values of unregularized linear regression model . .5 4 Beta values of unregularized linear model and their significance values. .5 5 Portfolio over 2017-2018 using unregularized linear model predictions. .5 6 Predicted vs actual values of the lasso regression model. .5 7 Lasso regression model histogram of errors. .6 8 Portfolio over 2017-2018 using lasso model predictions. .6 9 Portfolio over 2017-2018 using 5-day linear regression return predictions. .6 10 The architecture of 3-layer LSTM . .7 11 Correlation of actual next day's returns and predicted next day's returns . .7 12 Correlation of actual next 5-day's returns and predicted next 5-day's returns . .7 13 Histogram of errors for prediction on next day's returns . .8 14 Histogram of errors for prediction on next 5-day's returns . .8 15 Portfolio value over 2017-18 using LSTM model prediction on next day's returns . .8 16 Portfolio value over 2017-18 using LSTM model prediction on next 5-day's returns .8 17 Different Results given by Neural Net Model due to Stochastic Nature of Neural Nets9 18 Loss as a function of epochs . .9 19 Comparison of Linear Regression and Neural Network without Activation . 10 20 Correlation: predicted and actual returns . 10 21 Histogram of Errors from Neural Net Model . 10 22 Final Saved Portfolio from the Neural Net Model compared to the Naive Strategy . 11 23 Plots of Portfolio Value over Time for Linear Regression Portfolio with Stop Loss (No SL, 15%, 10%, 5%) . 12 24 Comparison of the portfolio over time for different models . 13 Page 2 of 15 Trend Following Strategy Introduction and Strategy In addition to that, we also filter out commodi- ties futures with low volume out as well. In the Trend following is one of the most clas- end, we have in total of 36 different contracts sic investment styles used by investors for over from 7 commodities. decades. The concept of trend following is rela- tively simple: When there is a trend, follow it; when things move against you or when the trend Data Exploration isnt really there, cut your losses. Since the data set we selected are relatively However, due to its simplicity, our team be- complete, we did not encounter any challenging lieves that trend following strategy itself might problems. However, the original features in the not be able to capture the nuance and the com- dataset is somewhat limited, so we decided to plexity of the financial market. Consequently, add approximately 50 new "trend-following" fea- with increased availability of data, we believe tures into the data set. Details of these features machine learning techniques could play an im- will be discussed in the next section. portant role in constructing a better trend fol- In addition to that, we also explore the corre- lowing portfolio. That's why our task for this lation between different assets. The correlation project is to replicate and improve on the basic plot is shown in the figure below. ideas of trend following. Data Investment Universe Selection As per the project proposal, we narrowed down our universe of assets to futures markets. Using data sets from Quandl, we have access to multiple different futures contracts. However, we first select 9 different commodities to start off Figure 1: Correlation of Returns of 36 Different Assets with, including Crude Oil, Natural Gas, Gaso- line, Gold, Silver, Copper, Agriculture, Corn, In the plot above, there are quite a few no- Wheat, and Soybean. We consider 6 different ticeable clusters of assets with high positive cor- contracts for each commodity (1 to 6 months ex- relation. Such clusters are the same commodity piration). The primary reason for looking into with different expiration period. It's also notable a diverse set of assets is to diversify the port- that among all assets we selected, there is no pair folio. In addition to that, the volume of fu- of futures contracts that have high negative cor- tures contracts for specific commodities could be relation. a lot smaller than equity markets. Large buy or sell orders could potentially move the market. That's why we want to invest in many different Feature Generation contracts. After inspecting and considering each data Features selected for the modeling were based set, we ended up selecting 7 different commodi- on traditional trend following indicators. These ties, dropping Natural Gas and Gasoline from were used in the prediction of the final response our study due to incompleteness of the data set. variable, next day return, or (Pt+1 − Pt)=Pt. Page 3 of 15 Trend Following Strategy Continuous Variables Models 1. Simple Moving Average (SMA) Linear Model 2. Exponential Moving Average (EMA) First, a linear regression model was trained 3. Moving Average Convergence Divergence on 2014-2017 data and tested on 2017-2018 data. (MACD) The technique provided fairly stable predictable patterns and in the unregularized version, all 4. Momentum Indicator parameters mentioned in the feature generation 5. Day Since Cross section of this paper were used. A separate re- gression was run on each asset available in the 6. Number of days up - down training data in order to allow the models more The simple moving average, momentum indica- expressiveness in their understanding. The ad- tor, and number of days of price upward move- vantages of using a linear model on this problem ment minus number of days of price downward are that it is simple and easy to understand, and movement were calculated over several lookback it fits decently well to the data. Second, a reg- windows. Specifically over the time-frames of 5, ularized lasso regression model was trained on 10, 15, 20, 50, and 100 days back. EMA variables the same training data and tested on the same were included over lookback windows of 10, 12, test data. Finally, a linear regression model was 20, 26, 50, and 100 days. And, MACD was calcu- trained to predict returns over a longer time lated as 12-day EMA - 26-day EMA. Days since frame. Specifically, on 5-day returns. We at- cross indicates the number of days since the last tempted this model because in a non-ideal trad- crossover between an asset price and its EMA. ing system there are frictions. Namely, that one-day returns are small and may be erased by Categorical Variables transaction costs and we might not enter the po- sition until the next day. So, the question be- 1. SMA Crossover indicator variables came whether we could reliably predict 5-day 2. EMA Crossover indicator variables returns and whether that would improve the ef- ficacy of our trading algorithm. 3. MACD Crossover indicator variables The categorical variables were labeled at each Results timestep as +1 to indicate a crossover with buy The figures below showcase the plots of the signal, 0 to indicate no crossover, and -1 to predicted versus actual values as well as a his- indicate a crossover with a sell signal. They togram of the linear regression errors. were calculated as asset price crossovers with all the SMA, EMA, and MACD indicator variables mentioned in the continuous variables section. In traditional trend following strategies, these crossover variables are important indicators of detecting upward or downward trends that can be ridden for profit. Our reasoning for feeding all of them into our models was to allow the algo- rithm to determine which ones are more accurate predictors of next day returns. Figure 2: Predicted versus actual values of unregular- ized linear regression model. Page 4 of 15 Trend Following Strategy ear regression model price predictions performed quite well. Below is a chart of the portfolio growth based on the linear regression model com- pared to a naive strategy. Over the course of 2017-2018, the portfolio grew to 1.3x using the linear regression model return predictions. Figure 3: Histogram of error values of unregularized lin- ear regression model The overall train mse was 2.187 E-04. The test mse was 1.47 E-04. In analyzing the beta values of the linear regression, we noticed that exponential Moving Averages are generally bet- ter predictors than simple moving averages in terms of higher absolute values of betas. One of a 5 day, 10 day, 12 day, and 100 day indicators were statistically significant at the five percent level. Thus we also noticed that recent trends Figure 5: Portfolio over 2017-2018 using unregularized linear model predictions. are most significant, though longer term trends are not irrelevant. Finally, we noticed that be- Next, for the lasso model, we decided that it cause of the change of sign between EMA 10, may be interesting to train in order to get rid 12, 20 indicator variable beta values, there is an of some of the overfitting of a linear regression.
Recommended publications
  • Trend Following Algorithms in Automated Derivatives Market Trading ⇑ Simon Fong , Yain-Whar Si, Jackie Tai
    Expert Systems with Applications 39 (2012) 11378–11390 Contents lists available at SciVerse ScienceDirect Expert Systems with Applications journal homepage: www.elsevier.com/locate/eswa Trend following algorithms in automated derivatives market trading ⇑ Simon Fong , Yain-Whar Si, Jackie Tai Department of Computer and Information Science, University of Macau, Macau article info abstract Keywords: Trend following (TF) is trading philosophy by which buying/selling decisions are made solely according to Trend following the observed market trend. For many years, many manifestations of TF such as a software program called Automated trading system Turtle Trader, for example, emerged in the industry. Surprisingly little has been studied in academic Futures contracts research about its algorithms and applications. Unlike financial forecasting, TF does not predict any mar- Mechanical trading ket movement; instead it identifies a trend at early time of the day, and trades automatically afterwards by a pre-defined strategy regardless of the moving market directions during run time. Trend following trading has been popular among speculators. However it remains as a trading method where human judgment is applied in setting the rules (aka the strategy) manually. Subsequently the TF strategy is exe- cuted in pure objective operational manner. Finding the correct strategy at the beginning is crucial in TF. This usually involves human intervention in first identifying a trend, and configuring when to place an order and close it out, when certain conditions are met. In this paper, we evaluated and compared a col- lection of TF algorithms that can be programmed in a computer system for automated trading. In partic- ular, a new version of TF called trend recalling model is presented.
    [Show full text]
  • Arbitrage Pricing Theory∗
    ARBITRAGE PRICING THEORY∗ Gur Huberman Zhenyu Wang† August 15, 2005 Abstract Focusing on asset returns governed by a factor structure, the APT is a one-period model, in which preclusion of arbitrage over static portfolios of these assets leads to a linear relation between the expected return and its covariance with the factors. The APT, however, does not preclude arbitrage over dynamic portfolios. Consequently, applying the model to evaluate managed portfolios contradicts the no-arbitrage spirit of the model. An empirical test of the APT entails a procedure to identify features of the underlying factor structure rather than merely a collection of mean-variance efficient factor portfolios that satisfies the linear relation. Keywords: arbitrage; asset pricing model; factor model. ∗S. N. Durlauf and L. E. Blume, The New Palgrave Dictionary of Economics, forthcoming, Palgrave Macmillan, reproduced with permission of Palgrave Macmillan. This article is taken from the authors’ original manuscript and has not been reviewed or edited. The definitive published version of this extract may be found in the complete The New Palgrave Dictionary of Economics in print and online, forthcoming. †Huberman is at Columbia University. Wang is at the Federal Reserve Bank of New York and the McCombs School of Business in the University of Texas at Austin. The views stated here are those of the authors and do not necessarily reflect the views of the Federal Reserve Bank of New York or the Federal Reserve System. Introduction The Arbitrage Pricing Theory (APT) was developed primarily by Ross (1976a, 1976b). It is a one-period model in which every investor believes that the stochastic properties of returns of capital assets are consistent with a factor structure.
    [Show full text]
  • Absolute Momentum: a Simple Rule-Based Strategy and Universal Trend-Following Overlay
    Absolute Momentum: a Simple Rule-Based Strategy and Universal Trend-Following Overlay Gary Antonacci Portfolio Management Associates, LLC1 February 28, 2013 Abstract There is a considerable body of research on relative strength price momentum but relatively little on absolute, time series momentum. In this paper, we explore the practical side of absolute momentum. We first explore its sole parameter - the formation, or look back, period. We then examine the reward, risk, and correlation characteristics of absolute momentum applied to stocks, bonds, and real assets. We finally apply absolute momentum to a 60-40 stock/bond portfolio and a simple risk parity portfolio. We show that absolute momentum can effectively identify regime change and add significant value as an easy to implement, rule-based approach with many potential uses as both a stand- alone program and trend following overlay. 1 http://optimalmomentum.com 1 1. Introduction The cross-sectional momentum effect is one of the strongest and most pervasive financial phenomena (Jegadeesh and Titman (1993), (2001)). Researchers have verified its value with many different asset classes, as well as across groups of assets (Blitz and Van Vliet (2008), Asness, Moskowitz and Pedersen (2012)). Since its publication, momentum has held up out-of-sample going forward in time (Grundy and Martin (2001), Asness, Moskowitz and Pedersen (2012)) and back to the Victorian Age (Chabot, Ghysels, and Jagannathan (2009)). In addition to cross-sectional momentum, in which an asset's performance relative to other assets predicts its future relative performance, momentum also works well on an absolute, or time series basis, in which an asset's own past return predicts its future performance.
    [Show full text]
  • Adoptive Trend Following Strategy in Financial Time Series with Multi-Objective Function
    INTERNATIONAL JOURNAL OF SCIENTIFIC & TECHNOLOGY RESEARCH VOLUME 8, ISSUE 12, DECEMBER 2019 ISSN 2277-8616 Adoptive Trend Following Strategy In Financial Time Series With Multi-Objective Function Ajit Kumar Rout, Satish Muppidi Abstract: Given the complex nature of the stock market, determining the stock market timing - when to buy or sell is a challenge for investors. There are two basic methodologies used for prediction in financial time series; fundamental and technical analysis. The fundamental analysis depends on external factors such as economic environment, industry and company performance. Technical analysis utilizes financial time series data such as stock price and trading volume. Trend following (TF) is an investment strategy based on the technical analysis of market prices. Trend followers do not aim to forecast nor do they predict specific price levels. They simply jump on the uptrend and ride on it until the end of this uptrend. Most of the trend followers determine the establishment and termination of uptrend based on their own rules. In this paper, we propose a TF algorithm that employs multiple pairs of thresholds to determine the stock market timing. The experimental result on 7 stock market indexes shows that the proposed multi-threshold TF algorithm with multi-objective function is superior when it is compared to static, dynamic, and float encoding genetic algorithm based TF. Index Terms: financial time series, technical analysis, trend following Algorithm. —————————— —————————— 1. INTRODUCTION identify the establishment of an uptrend and determine It is believed that the future behavior can be predicted by whether the uptrend could persist for a certain period of time studying the past behaviors.
    [Show full text]
  • ~Do NOT Compare Your Results with Other People, How They Trade Has
    .~I have no ego with my system, I just take the signals.. I have no expectations as I know the losses will be 60% but when the market decides to trend then I know all losses will be recovered as WINNERS ARE BIGGER than LOSERS~ ~Do NOT compare your results with other people, how they trade has nothing to do with how you trade or your system, comparing results will just cause you to lose faith in your PERFECTLY TESTED SYSTEM.~ ~The problem is not this trade it’s about the 1000 Trades to come, the problem is if you take profit early and it works out to your advantage, you're fucked for following rules in the future and your Model will not be REWARDED as it should be based on your well BACK-TESTED results for over 7 years~ ~Most intelligent way to begin managing money when trading is to confess you don't have a clue where the markets are going - Hugh Johnson~ ~Holy Grail of trading is finding a strategy where you manage INEVITABLE LOSSES whilst MAXIMIZING PROFITS- Big Money little Effort Mark Shipman~ ~Going against any system rules means that you are not trading the system. Long-term investment system has PERFORMED VERY WELL over the years without your help or interference and it doesn’t need any of that input now. ~ ~The first stage is the mechanical stage. In this stage, you: 1. Build the self-trust necessary to operate in an unlimited environment. 2. Learn to flawlessly execute a trading system. 3. Train your mind to think in probabilities 4.
    [Show full text]
  • Trend Following in the Time of COVID-19
    SPONSORED SECTION Trend following in the time of COVID-19 PHILIP SEAGER Head of Strategy - Quantitative Investment A strategy that can improve outcomes Solutions, CFM and reduce downside risk – if done right nstitutional investors hit by the COVID-19 pandemic placent, and then it all ends in tears when there’s a crisis. and resulting sell-off in global equity markets may be People buy into trend following after the spike and are then Long term, a mix of equities scratching their heads, wondering what they could have disappointed by the subsequent often long periods of mod- Idone differently. Traditional risk-hedging strategies, such as est performance.” with diversifying and using options, buying low volatility/quality stocks and others, were either costly or not effective. Disciplined trend following can offer a Sharpe ratio in line defensive strategies such as with a buy-and-hold equity strategy but with uncorrelated “Based on discussions I’ve had with institutional investors, a drawdowns and some protection in extreme equity sell-offs. lot of them have tried to employ defensive strategies,” said According to Seager, the skewed performance patterns of trend following should give Philip Seager, head of strategy - Quantitative Investment equities, with infrequent yet severe sell-offs, means investors Solutions at CFM. “And those defensive strategies are gener- often forget about the need for diversification. An allocation better outcomes. ally based on complex option baskets. What we’ve generally to trend following can diversify a portfolio. found with options is that the premium to employ these strat- egies is very high. What that means is essentially you end up For many investors, trend following can be difficult because, with a long-term negatively dragging P&L.” as Seager put it, “you get prolonged periods of not much Over the long term, investors using trend following as a re- happening.
    [Show full text]
  • Revisiting the Role of Alternatives in Asset Allocation*
    Revisiting the Role of Alternatives in Asset Allocation* Harsh Parikh From the US stock market’s bottom in March • Nevertheless, some strategies have PGIM 2009 through December 2015, US broad market historically provided “true” alpha and equity indices returned more than 200%, far diversification benefits—including real Tully Cheng, surpassing the gains made in most alternative estate, global macro, and relative value Neuberger Berman strategies. As a result, many institutional strategies. investors are finding themselves faced with the • Investors should carefully evaluate question: Why invest in alternative assets if they the market exposures and other key underperformed equities and cost significantly characteristics associated with a range of more than traditional strategies? alternatives in order to craft an allocation To address this question, we expand on that serves their overall investment previous practitioner research exploring the objectives. role of alternatives in institutional portfolios by • Manager selection is critical, given the wide reviewing hedge funds, private equity, and real performance dispersion observed across estate investment strategies. We analyze the role many types of alternatives. of these alternatives from the beginning of 2000 to Q1 2015 representing two full market cycles. Unpacking the Performance of Alternatives Our key conclusions: In the late 1980s, David Swensen, Yale’s Chief • Alternatives are far from homogenous; Investment Officer, pioneered the “endowment characteristics vary widely by strategy. model.” Through strong manager selection and reallocation from traditional assets to • Many alternative strategies have time- alternatives, Swensen successfully generated varying albeit significant embedded outsized returns, prompting others to follow exposure to cheaply accessible market betas. 7 Revisiting the Role of Alternatives in Asset Allocation suit.
    [Show full text]
  • Does Trend Following Work on Stocks?
    Does Trend Following Work on Stocks? November, 2005 Abstract Over the years many commodity trading advisors, proprietary traders, and global macro hedge funds have successfully applied various trend following methods to profitably trade in global futures markets. Very little research, however, has been published regarding trend following strategies applied to stocks. Is it reasonable to assume that trend following works on futures but not stocks? We decided to put a long only trend following strategy to the test by running it against a comprehensive database of U.S. stocks that have been adjusted for corporate actions1. Delisted2 companies were included to account for survivorship bias3. Realistic transaction cost estimates (slippage & commission) were applied. Liquidity filters were used to limit hypothetical trading to only stocks that would have been liquid enough to trade, at the time of the trade. Coverage included 24,000+ securities spanning 22 years. The empirical results strongly suggest that trend following on stocks does offer a positive mathematical expectancy4, an essential building block of an effective investing or trading system. Author(s): Cole Wilcox Eric Crittenden Managing Partner Director of Research & Trading Blackstar Funds, LLC Blackstar Funds, LLC [email protected] [email protected] 602.343.2904 602.343.2902 The authors would like to acknowledge Bob Bolotin of RDB Computing, Inc., www.PowerST.com, for the software and programming that made this project possible. 1. Corporate action: Significant events that are typically agreed upon by a company's board of directors and authorized by the shareholders. Some examples are stock splits, dividends, mergers and acquisitions, rights issues and spin offs.
    [Show full text]
  • Trend Following: Equity and Bond Crisis Alpha
    Trend Following: Equity and Bond Crisis Alpha CARL HAMILL, SANDY RATTRAY and OTTO VAN HEMERT1 This version: August 30th, 2016 ABSTRACT We study time-series momentum (trend-following) strategies in bonds, commodities, currencies and equity indices between 1960 and 2015. We find that momentum strategies performed consistently both before and after 1985, periods which were marked by strong bear and bull markets in bonds respectively. We document a number of important risk properties. First, that returns are positively skewed, which we argue is intuitive by drawing a parallel between momentum strategies and a long option straddle strategy. Second, performance was particularly strong in the worst equity and bond market environments, giving credence to the claim that trend-following can provide equity and bond crisis alpha. Putting restrictions on the strategy to prevent it being long equities or long bonds has the potential to further enhance the crisis alpha, but reduces the average return. Finally, we examine how performance has varied across momentum strategies based on returns with different lags and applied to different asset classes. Keywords: trend following, momentum, crisis alpha, skewness JEL codes: E32, E44, G11, G12, G14 1 Hamill, Rattray and Van Hemert are at Man AHL. The authors would like to thank Nick Granger, Campbell Harvey, Anthony Ledford, Matthew Sargaison and Tim Wong for valuable comments. Please direct correspondence to: [email protected]. 1 Electronic copy available at: http://ssrn.com/abstract=2831926 Introduction Over the last few years we have seen futures trend following being used as a tool for institutional investors looking for “crisis alpha”.
    [Show full text]
  • Is This Time Different? Trend Following and Financial Crises
    Is this time different? Trend following and financial crises Mark C. Hutchinson Department of Accounting, Finance & Information Systems and Centre for Investment Research University College Cork College Road, Cork, Ireland. Tel +353 21 490 2597 Email: [email protected] John O’Brien Department of Accounting, Finance & Information Systems and Centre for Investment Research University College Cork College Road, Cork, Ireland. Tel +353 21 490 1911 Email: [email protected] This Version: February 2014 JEL Classifications: G10, G19 Keywords: Trend Following, Time Series Momentum, Financial Crisis, CTA The authors would like to thank Aspect Capital for financial support. The authors are also grateful to David F McCarthy for helpful comments and discussions. 1 Is this time different? Trend following and financial crises Abstract Following large positive returns in 2008, Commodity Trading Advisors (CTAs) received increased attention and allocations from institutional investors. Subsequent performance has been below its long term average. This has occurred in a period following the largest financial crisis since the great depression. In this paper, using almost a century of data, we investigate what typically happens to the core strategy pursued by these funds in global financial crises. We also examine the time series behaviour of the markets traded by CTAs during these crisis periods. Our results show that in an extended period following financial crises trend following average returns are less than half those earned in no-crisis periods. Evidence from regional crises shows a similar pattern. We also find that futures markets do not display the strong time series return predictability prevalent in no-crisis periods, resulting in relatively weak returns for trend following strategies for, on average, four years following the start of a financial crisis.
    [Show full text]
  • Stock in Trade
    12 ANALYSIS hile CTAs have long traded equity index futures among their core STOCK IN assets classes, more managers have Wbeen looking to single stocks to increase diversification and boost returns – as well TRADE as appeal to a wider class of investors. A trend among managers to apply systematic systems to single stock futures and cash equities has emerged in recent years, and has been notice- Managed futures managers able in some of their return profiles of late. The change in the law in the US in 2000 paved the way are looking to single stocks for trading single stock futures, and as liquidity has increased, more CTAs are dipping their toes. to increase diversification and A number of managers have also turned to cash equities where the liquidity is even deeper. improve returns Jerry Parker’s Chesapeake Capital was one pio- neer in adopting single stock futures. The firm has BY MATT SMITH had a standalone trend-following stock fund since 2009, and has been trading single stock futures ANALYSIS 13 (SSFs) within its flagship diversified program since Sunrise Capital Partners incorporated SSFs into 2002, using the same pure trend-following strategy the Evolution program it launched in January last it applies to other markets. “Our strategy has been year to take a more granular approach to trading to trade single stock futures on the long trades the S&P. “We thought we could get more value out and then use stock indices for shorts,” says Parker, of our strategy by taking a deeper dive into S&P and explaining that Chesapeake’s research has shown picking the component parts that were likely to that the single stock shorts don’t perform well be able to perform best,” explains Chris Stanton, historically using its trend-following approach.
    [Show full text]
  • On the Nature and Origins of Trend Following
    ON THE NATURE AND ORIGINS OF TREND FOLLOWING By Stig Ostgaard Although trend following has been a popular trading philosophy for many years, surprisingly little has been written about its origins and history. This is partly due, no doubt, to the scarcity of available information prior to the early 20th century, and because until about 50 years ago trend following as a philosophy had not been completely articulated. To be sure, by the early 1950s many trend following methodologies were in common use – and may have been for centuries – but the underlying concept had not been fully defined, or even given a name. One reason for this paucity of early information is suggested by the “following” part of the term “trend following.” The implication is one of passivity, of reaction, rather than of bold, assertive action -- and human nature shows a distinct preference for the latter. Also, trend following appears to be too simple an idea to be taken seriously. Indeed, simple ideas can take a very long time to be accepted – think of the concept of a negative number, or of zero: simple to us, but problematic to our ancestors. But for whatever reasons, we learn easily from the past only that which the participants of the time chose to reveal, and above that, what their chroniclers found interesting enough about which to write. We know the stories of the plungers, the manipulators, and their “corners”; of Daniel Drew, Jay Gould, James A. Patten and Arthur Cutten; but little of the lesser known traders, or “followers”, sitting on the sidelines analyzing the markets, perhaps more successfully than their legendary contemporaries.
    [Show full text]