Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
SAS for Finance
SAS for Finance

SAS for Finance: Forecasting and data analysis techniques with real-world examples to build powerful financial models

eBook
€17.99 €26.99
Paperback
€32.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Table of content icon View table of contents Preview book icon Preview Book

SAS for Finance

Forecasting Stock Prices and Portfolio Decisions using Time Series

I wish I had put more money into this stock. I should have trusted my technical analysis. I need to trust my broker. My gut feeling told me I should have cut my losses. Aren't these all statements that we have heard individuals involved in stock markets say at some point?

With a stock price, you can instantly see the impact of getting forecast right or wrong. It pays to be right. But if it were so simple, anyone could forecast the closing price of a blue-chip share and make millions. Maybe if it were so simple, there wouldn't be anything to distinguish investors, and the returns for everyone investing would be smaller, as the winning prize would be split across millions of investors. The ability to make the right call on investment decisions is what differentiates successful and unsuccessful investors...

Portfolio forecasting

The use of forecasting, and, in particular, using time series forecasting, goes beyond the scope of a few stocks. Hence, in this chapter, we will also cover the forecasting of portfolios. A portfolio can be defined as simply a range of investments held by a person or organization. An individual may have multiple stocks. Thus, the need to look at the scenarios where investment in a single stock needs to be assessed against holdings in other stocks. Certainly, there must also be other investment instruments that a person can hold. What about gold, bonds, real estate, and the now in vogue cryptocurrencies, such as Bitcoin?

Most organizations deal with multiple items in a portfolio. These items are usually spread across asset and liability classes. The portfolio usually isn't compiled in a day. It evolves over a period of time, and there are entrants and...

A portfolio demands decisions

A company that decides to invest all of its money in fixed deposits, rather than in government bonds, will have more decisions to make. At some point in time, the cash flow of the company will increase or decrease. If it increases, there might be further investment decisions, and a need to decide between various investment choices. Again, the easiest choice would be to go for the option that offers the highest rate of return. But what about putting all of your eggs in one basket? Shouldn't the company think about the need to diversify? Is the option of fixed deposits as attractive as last time? Interest rates might have moved, or the fixed term on offer could be different. And what about using the funds to expand, rather than investing? Suppose that this tranche of funds available for investment is expected to be invested for a longer time period...

Forecasting process

The forecasting process, illustrated in the following diagram, represents a typical process flow that can be applied to both time series and other models. There isn't a stage in the process that is more important than others. However, a good understanding of the business problem should be the building block of any modeling process:

Figure 2.2: Forecasting process

Let us walk through the process of forecasting:

  1. Define the business problem and state what the model expects to achieve.
  2. Collect data from various sources and systems and transform it to clean data.
  3. Plot the data, run statistical tests, fit the model, and interpret the results.
  4. Validate the model by using a holdout sample.
  5. Obtain a model sign after it meets the technical and the business requirements. Integrate it into the business process.

Most modelers spend a disproportionate amount of time...

Visualization of time series data

With an increase in software, there is also the option to use fancy charts to visualize data, while creating a better understanding of the underlying story. However, some charts don't work as well with time series data. The line chart is the one that works best for almost all business cases. Let's explore the case of the growth over lending in the last three years:

Figure 2.3: Visualization of time series

All of the six charts are trying to tell the same story. The bank has seen lending grow from £2.35 billion to £2.84 billion between 2015 and 2017. However, some of the charts are much better placed to tell the story. The best placed is the line chart, which depicts the time on the x-axis and the value of lending on the y-axis. As we read the chart, it becomes apparent that the line shows a growth in lending. The bar chart...

Dealing with multicollinearity

The modeler still wasn't sure that the model was robust enough. He remembered that he hadn't tested the model for any effects of multicollinearity. We spoke briefly about this phenomenon when we studied the correlation of stock prices with each of the eight independent variables proposed for the regression model. The multicollinearity test was run using the tolerance and the variance inflation factor (VIF).

The PROC REG code for multicollinearity is as follows:

PROC REG DATA=build plots(only label)=(RStudentByLeverage CooksD); 
ID date; 
MODEL stock = basket_index -- m1_money_supply_index/tol vif; 
RUN;
Figure 2.18: Partial output for multicollinearity

The tolerance is computed as 1-R2. When the R2 is high, the tolerance value is very low. Such low values of tolerance are indicative of multicollinearity. The VIF is derived by taking the...

Role of autocorrelation

One of the assumptions for ordinary least squares regression is that the error terms are independent. However, with time series data, much of the time, the error terms are correlated. This is also known as autocorrelation. The regression tests performed up until now don't test for autocorrelation. If autocorrelation is present in the model, then the parameter estimates may not be accurate, and the standard error estimates will be biased.

While the AUTOREG procedure should ideally be used for regressing time series data, we can still try to evaluate the model for autocorrelation by using PROC REG, which was used earlier. The statistic that is going to help us explore the autocorrelation is the Durbin-Watson (DW) statistic.

The PROC REG code for autocorrelation is as follows:

PROC REG DATA=build; 
ID date; 
MODEL basket_index eps p_e_ratio global_mkt_share...

Scoring based on PROC REG

Once we have built the regression model, we need to generate scores for a holdout sample. The holdout sample contains one month of observed data. At times, when building the model, we over fit the data. It is always a good idea to have a holdout sample on which the model can be fitted. There isn't anything better than using the observed values to see how well the predictions were made. The holdout sample shouldn't be too short or too future looking when compared to what has been built into the model.

We cannot expect the model that we have built for daily stock prices using almost three years of data to help us predict three years ahead. Also, using our model to predict just one day ahead and using that as a holdout sample would be too lenient on the model, and would not check for its practical use with a decent data size.

We will write the...

Recap of key terms

Some of the terms that we used in this chapter are:

  • ARIMA: The ARIMA model was analyzed by looking at various aspects of the model. We gained an understanding of the auto-regressive and moving average component of ARIMA. We also looked at the p, d, and q elements of the model. We developed an understanding of how the process helps to deal with autocorrelation, in comparison to regression. We forecasted values from the model using the historical data from the variable of interest only.
  • Dependent: The variable that we are trying to forecast or gain a better understanding of is the dependent. We can use a series of independent variables to try and forecast a dependent variable.
  • Differencing: This is the transformation of the data that we have used to derive a new variable, based on the change of the series from one data point to another.
  • Independent: The variables...

Summary

In this chapter, we explored aspects of portfolio forecasting, steps in the forecasting process, tips for the visualization of time series data, and model building for a business case. Both regression and ARIMA models were used, and we compared the results of the model by using a validation sample. In the next chapter, we will discuss risk modeling.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • •Leverage the power of SAS to analyze financial data with ease
  • •Find hidden patterns in your data, predict future trends, and optimize risk management
  • •Learn why leading banks and financial institutions rely on SAS for financial analysis

Description

SAS is a groundbreaking tool for advanced predictive and statistical analytics used by top banks and financial corporations to establish insights from their financial data. SAS for Finance offers you the opportunity to leverage the power of SAS analytics in redefining your data. Packed with real-world examples from leading financial institutions, the author discusses statistical models using time series data to resolve business issues. This book shows you how to exploit the capabilities of this high-powered package to create clean, accurate financial models. You can easily assess the pros and cons of models to suit your unique business needs. By the end of this book, you will be able to leverage the true power of SAS to design and develop accurate analytical models to gain deeper insights into your financial data.

Who is this book for?

Financial data analysts and data scientists who want to use SAS to process and analyze financial data and find hidden patterns and trends from it will find this book useful. Prior exposure to SAS will be helpful but is not mandatory. Some basic understanding of the financial concepts is required.

What you will learn

  • Understand time series data and its relevance in the financial industry
  • Build a time series forecasting model in SAS using advanced modeling theories
  • Develop models in SAS and infer using regression and Markov chains
  • Forecast in?ation by building an econometric model in SAS for your financial planning
  • Manage customer loyalty by creating a survival model in SAS using various groupings
  • Understand similarity analysis and clustering in SAS using time series data

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : May 30, 2018
Length: 306 pages
Edition : 1st
Language : English
ISBN-13 : 9781788622486
Vendor :
SAS Institute
Category :
Concepts :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want

Product Details

Publication date : May 30, 2018
Length: 306 pages
Edition : 1st
Language : English
ISBN-13 : 9781788622486
Vendor :
SAS Institute
Category :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 111.97
Big Data Analytics with SAS
€36.99
SAS for Finance
€32.99
Hands-On SAS for Data Analysis
€41.99
Total 111.97 Stars icon

Table of Contents

8 Chapters
Time Series Modeling in the Financial Industry Chevron down icon Chevron up icon
Forecasting Stock Prices and Portfolio Decisions using Time Series Chevron down icon Chevron up icon
Credit Risk Management Chevron down icon Chevron up icon
Budget and Demand Forecasting Chevron down icon Chevron up icon
Inflation Forecasting for Financial Planning Chevron down icon Chevron up icon
Managing Customer Loyalty Using Time Series Data Chevron down icon Chevron up icon
Transforming Time Series – Market Basket and Clustering Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.