Be Financially Secure: Predicting Auto Stock Prices with Past Data

Total Page:16

File Type:pdf, Size:1020Kb

Be Financially Secure: Predicting Auto Stock Prices with Past Data Be Financially Secure: Predicting Auto Stock Prices with Past Data Rutvik Parikh Massachusetts Academy of Math & Science at WPI [email protected] Table of Contents Abstract 1 Introduction 1 Methods and Materials 3 Moving Average 3 Relative Strength Index (RSI) 4 Money Flow Index (MFI) 4 Rate of Change Indicator (ROC) 5 Models 5 Results 6 Discussion 9 References 13 Parikh 1 1. Abstract Deciding which auto stocks to invest in can be overwhelming and frightening for many individuals due to the great amount of past data available, and the ambiguity of its effects on future outcomes. Therefore, the goal of this project is to develop a model for auto stock price prediction using technical analysis based on multiple indicators. First, a few quantitative indicators were chosen to assist with prediction. Next, computer algorithms were used to calculate numerical values of these indicators using stock price data. These values were then employed to predict whether the closing price of a particular auto stock would rise or fall in the short term; distinct subsets of these indicators were tested in an effort to obtain the strongest and most helpful model. These models were tested on stock price data from several major auto companies, including General Motors, Subaru, and Ford. This data was from 2013 to 2018. The accuracies of the models were spread out over a range of 42% to 69%. The most successful model relied on the rate of change indicator, suggesting that this indicator may have been the most applicable to the auto industry during the aforementioned years. The performance of the models shows that technical analysis effectively gauges the future behavior of auto stocks. Considering the complex volatility of the stock market, these models can be used by investors to help make important financial decisions and feel more confident about their investments. 2. Introduction Many people invest in an effort to accomplish future financial goals. By allowing individuals to try selling investments for more than they were originally purchased for, investing has the potential to help one make more money (Principal Financial Staff, 2020). There are several different types of investments that one may choose, and stocks are common ones. Stocks, which are bought and sold in the stock market, are pieces of possession in a particular Parikh 2 company. After a company lists its stock, individuals may purchase shares of that company’s stock (Davis & O’Shea, 2020). However, many individuals are scared of investing in stocks. There are a variety of reasons for this, but a major one is that people fear making poor investments that will lead to them losing money. Although it is true that losing money in the stock market is almost inevitable at some point, these losses are not significantly detrimental in the long term; continuously saving up money ensures that such losses are not potent (Becker, 2020). Furthermore, one can feel more confident of their investments by trying to predict future stock prices. Investors use different types of methods to analyze stocks, including fundamental analysis and technical analysis. Fundamental analysis examines several economic factors to determine the actual value of a stock at a certain time (Segal, 2020). On the other hand, technical analysis solely relies on past stock prices. Moreover, technical analysts may choose from a wide array of quantitative technical indicators to assist them with their analysis, with each indicator forming a conclusion about the future behavior of stock prices; multiple indicators are often used in conjunction to form final predictions (Chen, 2020a). Deciding which auto stocks to invest in can be an overwhelming experience for many individuals, as there are great quantities of past data available, but the effects of this data on future outcomes is unclear. This goal of this study was to develop a model that can predict auto stocks using technical analysis based on multiple technical indicators. The indicators that were employed included the exponential moving average, the relative strength index, the money flow index, and the rate of change indicator. The exponential moving average is an indicator that is not influenced by short-lived price deviations and that places an emphasis on more recent data Parikh 3 (Hayes, 2020). The relative strength index investigates whether a particular stock is overbought or oversold, and how this will affect the future behavior of prices (Chen, 2020b). Similarly, the money flow index uses a slightly different process to determine if a stock is overbought or oversold (Mitchell, 2020a). Finally, the rate of change indicator establishes the long-term trend of a certain stock and uses this trend to predict the future behavior of prices (Mitchell, 2020b). Overall, these indicators formed a prediction about the future behavior of stock prices for auto stocks. This study adds another reference point to other existing models; investors may use this as a comparison point with other models before making important decisions. To predict auto stock prices, the values of the technical indicators being used must be computed. 3. Methods and Materials Calculating each indicator value required different steps, and each indicator formed its own conclusion about the behavior of stock prices in the near future. The materials used in this study included RStudio (an integrated development environment for the programming language R) and stock price data from Yahoo Finance. It is important to note that unless otherwise noted, a stock price refers to the closing price of a particular stock over a certain interval of time. The calculation and interpretation of each indicator are described below: 3.1. Moving Average First, the most recent 50 trading days of a particular dataset were examined. The closing prices of the first 30 of these 50 days were used to calculate a simple moving average to be used as a starting point for a series of exponential moving averages. The exponential moving averages for the last 20 of the 50 original days were then calculated and placed in an array. Next, the differences between the values in this array were placed into another array. At this point, the two highest and two lowest values were removed from this array of differences to Parikh 4 remove outliers, and the mean of the 15 values that remained in this array was computed. If this mean was greater than zero, the moving average indicator predicted an increase in prices; likewise, this indicator predicted a decrease in prices when the mean was less than zero. Also, the indicator could not make a prediction when the mean equalled zero, as the data would be inconclusive in this case. 3.2. Relative Strength Index (RSI) First, the most recent 34 trading days of a certain dataset were identified. The first 14 of these 34 days were used to compute an initial average gain and initial average loss. These two values were then used as the starting values to compute the average gain and average loss over the interval containing the remaining 20 days of the original 34. Each new gain would be accounted for using a formula: new average gain = ((previous average gain) x 13 + new gain) / 14. This formula would hold true for average losses as well, replacing “gain” with “loss.” Next, the relative strength was found by dividing the average gain by the absolute value of the average loss. Finally, a formula was utilized to calculate the relative strength index: RSI = 100 - (100 / (1 + relative strength)). This indicator predicted an increase in prices when its value was less than 50 and a decrease when its value was greater than 50. In the scenario that the relative strength index equalled 50, the relative strength index would avoid making a definite prediction, as the data would be inconclusive. 3.3. Money Flow Index (MFI) First, the most recent 15 trading days of the dataset were identified. An array containing the typical prices of a particular stock for each of these 15 days was created. Next, another array containing the raw money flows during a time span of 14 days (the original 15 days minus the first of these 15 days), with negative values representing days on which the typical price was Parikh 5 smaller than the typical price on the previous day, was created. The positive money flow was then calculated by adding all positive values from the array of raw money flows, while the negative money flow was calculated by adding all negative values from this same array before multiplying by negative one. At this point, the money flow ratio was found by dividing the positive money flow by the negative money flow, and the money flow index was computed using a formula: MFI = 100 - (100 / (1 + money flow ratio)). When this indicator’s value was less than 50, it predicted an increase in prices; on the other hand, when its value was greater than 50, this indicator predicted a decrease in prices. A money flow index of exactly 50 made no prediction as a result of the inconclusive data. 3.4. Rate of Change Indicator (ROC) First, the closing price of the most recent trading day of the given dataset was found. Additionally, this same closing price 90 days earlier was also found. Referring to these values as recent and previous respectively, the rate of change indicator was computed through a formula: ROC = ((recent - previous) / (previous)) * 100. A negative ROC predicted an increase in prices, while a positive ROC predicted a decrease in prices. Lastly, the indicator did not make a prediction due to inconclusive data when ROC was equal to zero. 3.5. Models Each indicator was treated as its own model with its own prediction. In addition, a combined model that examines all four indicators was developed.
Recommended publications
  • Predicting SARS-Cov-2 Infection Trend Using Technical Analysis Indicators
    medRxiv preprint doi: https://doi.org/10.1101/2020.05.13.20100784; this version posted May 20, 2020. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted medRxiv a license to display the preprint in perpetuity. All rights reserved. No reuse allowed without permission. Predicting SARS-CoV-2 infection trend using technical analysis indicators Marino Paroli and Maria Isabella Sirinian Department of Clinical, Anesthesiologic and Cardiovascular Sciences, Sapienza University of Rome, Italy ABSTRACT COVID-19 pandemic is a global emergency caused by SARS-CoV-2 infection. Without efficacious drugs or vaccines, mass quarantine has been the main strategy adopted by governments to contain the virus spread. This has led to a significant reduction in the number of infected people and deaths and to a diminished pressure over the health care system. However, an economic depression is following due to the forced absence of worker from their job and to the closure of many productive activities. For these reasons, governments are lessening progressively the mass quarantine measures to avoid an economic catastrophe. Nevertheless, the reopening of firms and commercial activities might lead to a resurgence of infection. In the worst-case scenario, this might impose the return to strict lockdown measures. Epidemiological models are therefore necessary to forecast possible new infection outbreaks and to inform government to promptly adopt new containment measures. In this context, we tested here if technical analysis methods commonly used in the financial market might provide early signal of change in the direction of SARS-Cov-2 infection trend in Italy, a country which has been strongly hit by the pandemic.
    [Show full text]
  • Putting Volatility to Work
    Wh o ’ s afraid of volatility? Not anyone who wants a true edge in his or her trad i n g , th a t ’ s for sure. Get a handle on the essential concepts and learn how to improve your trading with pr actical volatility analysis and trading techniques. 2 www.activetradermag.com • April 2001 • ACTIVE TRADER TRADING Strategies BY RAVI KANT JAIN olatility is both the boon and bane of all traders — The result corresponds closely to the percentage price you can’t live with it and you can’t really trade change of the stock. without it. Most of us have an idea of what volatility is. We usually 2. Calculate the average day-to-day changes over a certain thinkV of “choppy” markets and wide price swings when the period. Add together all the changes for a given period (n) and topic of volatility arises. These basic concepts are accurate, but calculate an average for them (Rm): they also lack nuance. Volatility is simply a measure of the degree of price move- Rt ment in a stock, futures contract or any other market. What’s n necessary for traders is to be able to bridge the gap between the Rm = simple concepts mentioned above and the sometimes confus- n ing mathematics often used to define and describe volatility. 3. Find out how far prices vary from the average calculated But by understanding certain volatility measures, any trad- in Step 2. The historical volatility (HV) is the “average vari- er — options or otherwise — can learn to make practical use of ance” from the mean (the “standard deviation”), and is esti- volatility analysis and volatility-based strategies.
    [Show full text]
  • Testing the Profitability of Technical Analysis in Singapore And
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by ScholarBank@NUS Testing the Profitability of Technical Analysis in Singapore and Malaysian Stock Markets Department of Electrical and Computer Engineering Zoheb Jamal HT080461R In partial fulfillment of the requirements for the Degree of Master of Engineering National University of Singapore 2010 1 Abstract Technical Analysis is a graphical method of looking at the history of price of a stock to deduce the probable future trend in its return. Being primarily visual, this technique of analysis is difficult to quantify as there are numerous definitions mentioned in the literature. Choosing one over the other might lead to data- snooping bias. This thesis attempts to create a universe of technical rules, which are then tested on historical data of Straits Times Index and Kuala Lumpur Composite Index. The technical indicators tested are Filter Rules, Moving Averages, Channel Breakouts, Support and Resistance and Momentum Strategies in Price. The technical chart patterns tested are Head and Shoulders, Inverse Head and Shoulders, Broadening Tops and Bottoms, Triangle Tops and Bottoms, Rectangle Tops and Bottoms, Double Tops and Bottoms. This thesis also outlines a pattern recognition algorithm based on local polynomial regression to identify technical chart patterns that is an improvement over the kernel regression approach developed by Lo, Mamaysky and Wang [4]. 2 Acknowledgements I would like to thank my supervisor Dr Shuzhi Sam Ge whose invaluable advice and support made this research possible. His mentoring and encouragement motivated me to attempt a project in Financial Engineering, even though I did not have a background in Finance.
    [Show full text]
  • Technical and Fundamental Analysis
    University of Tennessee, Knoxville TRACE: Tennessee Research and Creative Exchange Supervised Undergraduate Student Research Chancellor’s Honors Program Projects and Creative Work 12-2016 Understanding the Retail Investor: Technical and Fundamental Analysis Ben Davis [email protected] Follow this and additional works at: https://trace.tennessee.edu/utk_chanhonoproj Part of the Finance and Financial Management Commons Recommended Citation Davis, Ben, "Understanding the Retail Investor: Technical and Fundamental Analysis" (2016). Chancellor’s Honors Program Projects. https://trace.tennessee.edu/utk_chanhonoproj/2024 This Dissertation/Thesis is brought to you for free and open access by the Supervised Undergraduate Student Research and Creative Work at TRACE: Tennessee Research and Creative Exchange. It has been accepted for inclusion in Chancellor’s Honors Program Projects by an authorized administrator of TRACE: Tennessee Research and Creative Exchange. For more information, please contact [email protected]. University of Tennessee Global Leadership Scholars & Chancellors Honors Program Undergraduate Thesis Understanding the Retail Investor: Technical and Fundamental Analysis Benjamin Craig Davis Advisor: Dr. Daniel Flint April 22, 2016 1 Understanding the Retail Investor: Fundamental and Technical Analysis Abstract: If there is one thing that people take more seriously than their health, it is money. Behavior and emotion influence how retail investors make decisions on the methodology of investing/trading their money. The purpose of this study is to better understand what influences retail investors to choose the method by which they invest in capital markets. By better understanding what influences retail investors to choose a certain investment methodology, eventually researchers can provide tailored and normative advice to investors as well as the financial planning industry in effectively and efficiently working with clients.
    [Show full text]
  • 2021 Mid-Year Outlook July 2021 Economic Recovery, Updated Vaccine, and Portfolio Considerations
    2021 Mid-Year Outlook July 2021 Economic recovery, updated vaccine, and portfolio considerations. Key Observations • Financial market returns year-to-date coincide closely with the premise of an expanding global economic recovery. Economic momentum and a robust earnings backdrop have fostered uniformly positive global equity returns while this same strength has been the impetus for elevated interest rates, hampering fixed income returns. • Our baseline expectation anticipates that the continuation of the economic revival is well underway but its relative strength may be shifting overseas, particularly to the Eurozone, where amplifying vaccination efforts and the prospects for additional stimulus reign. • Our case for thoughtful risk-taking remains intact. While the historically sharp and compressed pace of the recovery has spawned exceptionally strong returns across many segments of the capital markets and elevated valuations, the economic expansion should continue apace, fueled by still highly accommodative stimulus, reopening impetus and broader vaccination. Financial Market Conditions Economic Growth Forecasts for global economic growth in 2021 and 2022 remain robust with the World Bank projecting a 5.6 percent growth rate for 2021 and a 4.3 percent rate in 2022. If achieved, this recovery pace would be the most rapid recovery from crisis in some 80 years and provides a full reckoning of the extraordinary levels of stimulus applied to the recovery and of the herculean efforts to develop and distribute vaccines. GDP Growth Rates Source: FactSet Advisory services offered through Veracity Capital, LLC, a registered investment advisor. 1 While the case for further global economic growth remains compelling, we are mindful that near-term base effect comparisons and a bifurcated pattern of growth may be masking some complexities of the recovery.
    [Show full text]
  • Relative Strength Index for Developing Effective Trading Strategies in Constructing Optimal Portfolio
    International Journal of Applied Engineering Research ISSN 0973-4562 Volume 12, Number 19 (2017) pp. 8926-8936 © Research India Publications. http://www.ripublication.com Relative Strength Index for Developing Effective Trading Strategies in Constructing Optimal Portfolio Dr. Bhargavi. R Associate Professor, School of Computer Science and Software Engineering, VIT University, Chennai, Vandaloor Kelambakkam Road, Chennai, Tamilnadu, India. Orcid Id: 0000-0001-8319-6851 Dr. Srinivas Gumparthi Professor, SSN School of Management, Old Mahabalipuram Road, Kalavakkam, Chennai, Tamilnadu, India. Orcid Id: 0000-0003-0428-2765 Anith.R Student, SSN School of Management, Old Mahabalipuram Road, Kalavakkam, Chennai, Tamilnadu, India. Abstract Keywords: RSI, Trading, Strategies innovation policy, innovative capacity, innovation strategy, competitive Today’s investors’ dilemma is choosing the right stock for advantage, road transport enterprise, benchmarking. investment at right time. There are many technical analysis tools which help choose investors pick the right stock, of which RSI is one of the tools in understand whether stocks are INTRODUCTION overpriced or under priced. Despite its popularity and powerfulness, RSI has been very rarely used by Indian Relative Strength Index investors. One of the important reasons for it is lack of Investment in stock market is common scenario for making knowledge regarding how to use it. So, it is essential to show, capital gains. One of the major concerns of today’s investors how RSI can be used effectively to select shares and hence is regarding choosing the right securities for investment, construct portfolio. Also, it is essential to check the because selection of inappropriate securities may lead to effectiveness and validity of RSI in the context of Indian stock losses being suffered by the investor.
    [Show full text]
  • Relative Strength Index (RSI) Application in Identifying Trading Movements of Selected IT Sector Companies in India 1P
    IJMBS VOL . 7, Iss UE 1, JAN - MARCH 2017 ISSN : 2230-9519 (Online) | ISSN : 2231-2463 (Print) Relative Strength Index (RSI) Application in Identifying Trading Movements of Selected IT Sector Companies in India 1P. Selvam, 2L. Rakesh 1Business Studies, Sree Sastha Institute of Engineering & Technology, Chennai, India 2Senior Business Analyst, The Royal Bank of Scotland, Chennai, India Abstract The other variation of computing RSI: The stock market has been an integral part of the economy of any RSI = 100 X (1/(D/D+U) RSI – 100 ((100/U) /( 1+U/D)) country. The stock market plays a pivotal role in the growth of the Where, industry and commerce of the country that would subsequently D = an average of downward price change affect the economy of the country to a great extent. In the recent U = an average of upward price change past, share market investment has become one of the predominant As mentioned early, RSI usually makes fluctuation between 0 investment avenues for investors. Hence, investors wishing to make to 100. RSI peaks are an indication of overbought levels and an investment in share market are required to be conversant with suggest price tops, while RSI troughs are an indication of oversold share market trading practices, price fluctuations and appropriate levels and share price bottoms. Two horizontal lines are normally time for buying and selling securities. This article is proposed to drawn at 30 (indicating an oversold area) and 70 (indicating an apply the momentum oscillator by the name “Relative Strength overbought area). These two RSI lines can be adjusted depending Index – (RSI)” for figuring out an overbought and oversold on the market environment.
    [Show full text]
  • W E B R E V Ie W
    TRADERS´ TOOLS 37 Professional Screening, Advanced Charting, and Precise Sector Analysis www.chartmill.com The website www.chartmill.com is a technical analysis (TA) website created by traders for traders. Its main features are charting applications, a stock screener and a sector analysis tool. Chartmill supports most of the classical technical analysis indicators along with some state-of-the-art indicators and concepts like Pocket Pivots, Effective Volume, Relative Strength and Anchored Volume Weighted Average Prices (VWAPs, MIDAS curves). First, we will discuss some of these concepts. After that, we will have a look at the screener and charting applications. Relative Strength different manner. This form of Strong Stocks flatten out again. “Strong stocks” Relative Strength is available in Relative Strength was used in The screener supports the filters the nicest steady trends WEBREVIEW different forms at chartmill.com. “Point and Figure Charting” by concept of “strong stocks”, in the market and does a terrific Two Relative Strength related Thomas Dorsey. which are stocks with a high job in mimicking IBD (Investor‘s indicators are available in the Relative Strength. But there is Business Daily) stock lists. charts and screener: Besides these two indicators, more. Not all stocks with a high there is also the Relative Strength Relative Strength ranking are also Effective Volume • Mansfield Relative Strength: Ranking Number. Here, each strong stocks. Relative Strength Effective Volume is an indicator This compares the stock gets assigned a number looks at the performance over that was introduced in the book performance of the stock to between zero and 100, indicating the past year.
    [Show full text]
  • Point and Figure Relative Strength Signals
    February 2016 Point and Figure Relative Strength Signals JOHN LEWIS / CMT, Dorsey, Wright & Associates Relative Strength, also known as momentum, has been proven to be one of the premier investment factors in use today. Numerous studies by both academics and investment ABOUT US professionals have demonstrated that winning securities continue to outperform. This phenomenon has been found Dorsey, Wright & Associates, a Nasdaq Company, is a in equity markets all over the globe as well as commodity registered investment advisory firm based in Richmond, markets and in asset allocation strategies. Momentum works Virginia. Since 1987, Dorsey Wright has been a leading well within and across markets. advisor to financial professionals on Wall Street and investment managers worldwide. Relative Strength strategies focus on purchasing securities that have already demonstrated the ability to outperform Dorsey Wright offers comprehensive investment research a broad market benchmark or the other securities in the and analysis through their Global Technical Research Platform investment universe. As a result, a momentum strategy and provides research, modeling and indexes that apply requires investors to purchase securities that have already Dorsey Wright’s expertise in Relative Strength to various appreciated quite a bit in price. financial products including exchange-traded funds, mutual funds, UITs, structured products, and separately managed There are many different ways to calculate and quantify accounts. Dorsey Wright’s expertise is technical analysis. The momentum. This is similar to a value strategy. There are Company uses Point and Figure Charting, Relative Strength many different metrics that can be used to determine a Analysis, and numerous other tools to analyze market data security’s value.
    [Show full text]
  • Price Momentum Model Creat- Points at Institutionally Relevant John Brush Ed by Columbine Capital Services, Holding Periods
    C OLUMBINE N EWSLETTER A PORTFOLIO M ANAGER’ S R ESOURCE SPECIAL EDITION—AUGUST 2001 From etary price momentum model creat- points at institutionally relevant John Brush ed by Columbine Capital Services, holding periods. Columbine Alpha's Inc. The Columbine Alpha price dominance comes from its exploita- Price Momentum momentum model has been in wide tion of some of the many complex- a Twenty Year use by institutions for more than ities of price momentum. Recent Research Effort twenty years, both as an overlay non-linear improvements to with fundamental measures, and as Columbine Alpha incorporating Summary and Overview a standalone idea-generating screen. adjustments for extreme absolute The evidence presented here sug- price changes and considerations of Even the most casual market watch - gests that price momentum is not a trading volume appear likely to add ers have observed anecdotal evi- generic ingredient. another 100 basis points to the dence of trend following in stock model's 1st decile active return. prices. Borrowing from the world of The Columbine Alpha approach physics, early analysts characterized is almost twice as powerful as the You will see in this paper that this behavior as stock price momen- best simple alternative and war- constructing a price momentum tum. Over the years, researchers and rants attention by any investment model involves compromises or practitioners have developed manager who cares about active tradeoffs driven by the fact that increasingly more sophisticated return. different past measurement peri- mathematical descriptions (models) ods produce different future of equity price momentum effects. Even simple price momentum return patterns.
    [Show full text]
  • Lecture 20: Technical Analysis Steven Skiena
    Lecture 20: Technical Analysis Steven Skiena Department of Computer Science State University of New York Stony Brook, NY 11794–4400 http://www.cs.sunysb.edu/∼skiena The Efficient Market Hypothesis The Efficient Market Hypothesis states that the price of a financial asset reflects all available public information available, and responds only to unexpected news. If so, prices are optimal estimates of investment value at all times. If so, it is impossible for investors to predict whether the price will move up or down. There are a variety of slightly different formulations of the Efficient Market Hypothesis (EMH). For example, suppose that prices are predictable but the function is too hard to compute efficiently. Implications of the Efficient Market Hypothesis EMH implies it is pointless to try to identify the best stock, but instead focus our efforts in constructing the highest return portfolio for our desired level of risk. EMH implies that technical analysis is meaningless, because past price movements are all public information. EMH’s distinction between public and non-public informa- tion explains why insider trading should be both profitable and illegal. Like any simple model of a complex phenomena, the EMH does not completely explain the behavior of stock prices. However, that it remains debated (although not completely believed) means it is worth our respect. Technical Analysis The term “technical analysis” covers a class of investment strategies analyzing patterns of past behavior for future predictions. Technical analysis of stock prices is based on the following assumptions (Edwards and Magee): • Market value is determined purely by supply and demand • Stock prices tend to move in trends that persist for long periods of time.
    [Show full text]
  • Investing with Volume Analysis
    Praise for Investing with Volume Analysis “Investing with Volume Analysis is a compelling read on the critical role that changing volume patterns play on predicting stock price movement. As buyers and sellers vie for dominance over price, volume analysis is a divining rod of profitable insight, helping to focus the serious investor on where profit can be realized and risk avoided.” —Walter A. Row, III, CFA, Vice President, Portfolio Manager, Eaton Vance Management “In Investing with Volume Analysis, Buff builds a strong case for giving more attention to volume. This book gives a broad overview of volume diagnostic measures and includes several references to academic studies underpinning the importance of volume analysis. Maybe most importantly, it gives insight into the Volume Price Confirmation Indicator (VPCI), an indicator Buff developed to more accurately gauge investor participation when moving averages reveal price trends. The reader will find out how to calculate the VPCI and how to use it to evaluate the health of existing trends.” —Dr. John Zietlow, D.B.A., CTP, Professor of Finance, Malone University (Canton, OH) “In Investing with Volume Analysis, the reader … should be prepared to discover a trove of new ground-breaking innovations and ideas for revolutionizing volume analysis. Whether it is his new Capital Weighted Volume, Trend Trust Indicator, or Anti-Volume Stop Loss method, Buff offers the reader new ideas and tools unavailable anywhere else.” —From the Foreword by Jerry E. Blythe, Market Analyst, President of Winthrop Associates, and Founder of Blythe Investment Counsel “Over the years, with all the advancements in computing power and analysis tools, one of the most important tools of analysis, volume, has been sadly neglected.
    [Show full text]