Time Series Analysis with the QuSandbox
2018 Copyright QuantUniversity LLC.
Presented By:
Sri Krishnamurthy, CFA, CAP
sri@quantuniversity.com
www.quantuniversity.com
11/29/2018
QuantUniversity Meetup
Boston
2
About us:
• Data Science, Quant Finance and
Model Governance Advisory
• Technologies using MATLAB, Python
and R
• Programs
▫ Analytics Certificate Program
▫ Fintech programs
• Platform
3
Our programs
www.analyticscertificate.com
• Founder of QuantUniversity LLC. and
www.analyticscertificate.com
• Advisory and Consultancy for Financial Analytics
• Prior Experience at MathWorks, Citigroup and
Endeca and 25+ financial services and energy
customers.
• Regular Columnist for the Wilmott Magazine
• Author of forthcoming book
“Financial Modeling: A case study approach”
published by Wiley
• Charted Financial Analyst and Certified Analytics
Professional
• Teaches Analytics in the Babson College MBA
program and at Northeastern University, Boston
Sri Krishnamurthy
Founder and CEO
4
5
• 2-day Advances in Time series Workshop
▫ December/Jan - TBD
▫ Stay tuned for details at www.analyticscertificate.com
• 2-day Machine Learning in Finance Workshop
▫ Jan 23rd & 24th
▫ Register at www.analyticscertificate.com/MachineLearning
Upcoming events
6
Slides will be available at:
https://researchhub.qusandbox.com
7
You too can do data science!
8
• Brief intro to Machine Learning
• Time Series Analysis – Example
• Time Series Analysis – Case study
• Demo
Agenda
9
Dataset, variable and Observations
Dataset: A rectangular array with Rows as observations and
columns as variables
Variable: A characteristic of members of a population ( Age, State
etc.)
Observation: List of Variable values for a member of the
population
Variables
— A variable could be:
—Categorical
— Yes/No flags
— AAA,BB ratings for bonds
—Numerical
— 35 mpg
— $170K salary
Datasets
• Longitudinal
▫ Observations are dependent
▫ Temporal-continuity is required
• Cross-sectional
▫ Observations are independent
13
Data
Cross
sectional
Numerical Categorical
Longitudinal
Numerical
Summary
14
15
• Given a dataset, build a model that captures the similarities in
different observations and assigns them to different buckets.
• Given a set of variables, predict the value of another variable in a
given data set
▫ Predict Salaries given work experience, education etc.
▫ Predict whether a loan would be approved given fico score, current
loans, employment status etc.
Predictive Analytics : Cross sectional datasets
16
• Supervised Algorithms
▫ Given a set of variables !", predict the value of another variable # in a
given data set such that
▫ If y is numeric => Prediction
▫ If y is categorical => Classification
Machine Learning
x1,x2,x3… Model F(X) y
17
• Given a time series dataset, build a model that can be used to
forecast values in the future
Predictive Analytics : Time series datasets
18
• Goal is to extract and model the various components
Time series datasets
19
• https://youtu.be/nIKwXzGieK8?t=63
• Extracting components from time series datasets is like squeezing
juice out of sugarcane.
Sugarcane analogy
20
• http://faculty.chicagobooth.edu/ruey.tsay/teaching/introTS/ch3case
2.pdf
Case 1: Analysis of Temperature Anomalies
21
Case 2 : Analyzing Swap rates
Ref: Statistical Models and Methods for Financial Markets Tze Leung Lai and Haipeng Xing.
New York, NY: Springer, 2008. ISBN: 978-0-387-77826-6.
22
http://www.asimovinstitute.org/neural-network-zoo/
Supervised learning
Cross-sectional
▫ Observations are independent
▫ Given X1----Xi, predict Y
▫ CNNs
Supervised learning
Sequential
▫ Sequentially ordered
▫ Given O1---OT, predict OT+1
1 Normal
2 Normal
3 Abnormal
4 Normal
5 Abnormal
25
• Given : X1,X2,X3----XN
• Convert the Univariate time series dataset to a cross sectional
Dataset
Time series modeling in Keras using MLPs
X1
X2
X3
X4
X5
X6
X7
X8
X9
X10
X11
X12
X13
X14
X15
X Y
X1 X2
X2 X3
X3 X4
X4 X5
X5 X6
X6 X7
X7 X8
X8 X9
X9 X10
X10 X11
X11 X12
X12 X13
X13 X14
X14 X15
26
• Monthly data
• Computational Intelligence in Forecasting
• Source: http://irafm.osu.cz/cif/main.php?c=Static&page=download
Sample data
0
200
400
600
800
1000
1200
1400
1600
1800
1
4
7
10
13
16
19
22
25
28
31
34
37
40
43
46
49
52
55
58
61
64
67
70
73
76
79
82
85
88
91
94
97
100
103
106
27
• Use 72 for training and 36 for testing
• Lookback 1, 10
• Longer the lookback, larger the network
Multi-Layer Perceptron
Size 8
Size 1
28
Demo
Train Score: 1972.20 MSE (44.41 RMSE)
Test Score: 3001.77 MSE (54.79 RMSE)
Train Score: 2631.49 MSE (51.30 RMSE)
Test Score: 4166.64 MSE (64.55 RMSE)
Lookback = 1 Lookback = 10
29
• Has 3 types of parameters
▫ W – Hidden weights
▫ U – Hidden to Hidden weights
▫ V – Hidden to Label weights
• All W,U,V are shared
Recurrent Neural Networks1
1. http://ai.stanford.edu/~quocle/tutorial2.pdf
30
Where can Recurrent Neural Networks be used?1
1. http://karpathy.github.io/2015/05/21/rnn-effectiveness/
1. Vanilla mode of processing without RNN, from fixed-sized input to fixed-sized output (e.g. image
classification).
2. Sequence output (e.g. image captioning takes an image and outputs a sentence of words).
3. Sequence input (e.g. sentiment analysis where a given sentence is classified as expressing positive
or negative sentiment).
4. Sequence input and sequence output (e.g. Machine Translation: an RNN reads a sentence in
English and then outputs a sentence in French).
5. Synced sequence input and output (e.g. video classification where we wish to label each frame of
the video).
31
Recurrent Neural Networks
• A recurrent neural network can be thought of as multiple copies of
the same network, each passing a message to a successor. 1
• Backpropagation(computing gradient wrt all parameters of the
network) which is process used to propagate errors and weights
needs to be modified for RNNs due to the existence of loops
http://colah.github.io/posts/2015-08-Understanding-LSTMs/
32
• BPTT begins by unfolding a recurrent neural network through time
as shown in the figure.
• Training then proceeds in a manner similar to training a feed-
forward neural network with backpropagation, except that the
training patterns are visited in sequential order.
Back Propagation through time (BPTT)1
1. https://en.wikipedia.org/wiki/Backpropagation_through_time
33
• Backpropagation through time (BPTT) for RNNs is difficult due to a
problem known as vanishing/exploding gradient . i.e, the gradient
becomes extremely small or large towards the first and end of the
network.
• This is addressed by LSTM RNNs. Instead of neurons, LSTMs use
memory cells 1
Addressing the problem of Vanishing/Exploding gradient
http://deeplearning.net/tutorial/lstm.html
34
www.QuSandbox.com
Model
Analytics
Studio
QuResearchHub
QuSandbox
Prototype, Iterate and tune Standardize workflows
Productionize and share
Sri Krishnamurthy, CFA, CAP
Founder and Chief Data Scientist
sri@quantuniversity.com
srikrishnamurthy
www.QuantUniversity.com
www.analyticscertificate.com
www.qusandbox.com
Information, data and drawings embodied in this presentation are strictly a property of QuantUniversity LLC. and shall not be
distributed or used in any other publication without the prior written consent of QuantUniversity LLC.
35

More Related Content

PDF
Machine Learning for Finance Master Class
PDF
Machine Learning Applications in Credit Risk
PDF
Data science in 10 steps
PDF
QuSandbox+NVIDIA Rapids
PDF
Synthetic VIX Data Generation Using ML Techniques
PDF
Machine Learning and AI: Core Methods and Applications
PDF
Nlp workshop-share
PDF
Ai in finance
Machine Learning for Finance Master Class
Machine Learning Applications in Credit Risk
Data science in 10 steps
QuSandbox+NVIDIA Rapids
Synthetic VIX Data Generation Using ML Techniques
Machine Learning and AI: Core Methods and Applications
Nlp workshop-share
Ai in finance

What's hot (20)

PDF
Machine Learning and AI: An Intuitive Introduction - CFA Institute Masterclass
PDF
achine Learning and Model Risk
PDF
Ml conference slides boston june 2019
PDF
QCon conference 2019
PDF
QuantUniversity Machine Learning in Finance Course
PDF
Synthetic Data Generation with DoppelGanger
PDF
Algorithmic auditing 1.0
PDF
Bayesian Portfolio Allocation
PDF
10 Key Considerations for AI/ML Model Governance
PDF
CFA-NY Workshop - Final slides
PDF
Ds for finance day 2
PDF
Python for Data science
PDF
Machine Learning: Considerations for Fairly and Transparently Expanding Acces...
PDF
Deep learning with Keras
PDF
Model Risk Management for Machine Learning
PDF
Ds for finance day 3
PDF
Model governance in the age of data science & AI
PDF
Practical model management in the age of Data science and ML
PDF
Optimization
PDF
No, you don't need to learn python
Machine Learning and AI: An Intuitive Introduction - CFA Institute Masterclass
achine Learning and Model Risk
Ml conference slides boston june 2019
QCon conference 2019
QuantUniversity Machine Learning in Finance Course
Synthetic Data Generation with DoppelGanger
Algorithmic auditing 1.0
Bayesian Portfolio Allocation
10 Key Considerations for AI/ML Model Governance
CFA-NY Workshop - Final slides
Ds for finance day 2
Python for Data science
Machine Learning: Considerations for Fairly and Transparently Expanding Acces...
Deep learning with Keras
Model Risk Management for Machine Learning
Ds for finance day 3
Model governance in the age of data science & AI
Practical model management in the age of Data science and ML
Optimization
No, you don't need to learn python
Ad

Similar to Time series analysis : Refresher and Innovations (20)

PPTX
Deep learning Tutorial - Part II
PDF
Deep learning with Keras
PDF
Deep learning QuantUniversity meetup
PPTX
Unsupervised Learning: Clustering
PPTX
Deep learning with keras
PDF
Master Thesis Slides: Topic Development of Methods for Deep Neural Network Ar...
PPTX
SAMPLE PPT PRESENTATION FOR REVIEW-1.pptx
PDF
01-pengantar.pdf
PDF
Credit risk meetup
PDF
Predicting Stock Market Price Using Support Vector Regression
PDF
“Practical Approaches to DNN Quantization,” a Presentation from Magic Leap
PPTX
“Machine Learning in Production + Case Studies” by Dmitrijs Lvovs from Epista...
PDF
AI In Actuarial Science
PDF
Hands-on - Machine Learning using scikitLearn
PPTX
Panel: Building the NRP Ecosystem with the Regional Networks on their Campuses;
PDF
1710 track3 zhu
PDF
Modern Computing: Cloud, Distributed, & High Performance
PPTX
RS in the context of Big Data-v4
PDF
ML master class
Deep learning Tutorial - Part II
Deep learning with Keras
Deep learning QuantUniversity meetup
Unsupervised Learning: Clustering
Deep learning with keras
Master Thesis Slides: Topic Development of Methods for Deep Neural Network Ar...
SAMPLE PPT PRESENTATION FOR REVIEW-1.pptx
01-pengantar.pdf
Credit risk meetup
Predicting Stock Market Price Using Support Vector Regression
“Practical Approaches to DNN Quantization,” a Presentation from Magic Leap
“Machine Learning in Production + Case Studies” by Dmitrijs Lvovs from Epista...
AI In Actuarial Science
Hands-on - Machine Learning using scikitLearn
Panel: Building the NRP Ecosystem with the Regional Networks on their Campuses;
1710 track3 zhu
Modern Computing: Cloud, Distributed, & High Performance
RS in the context of Big Data-v4
ML master class
Ad

More from QuantUniversity (20)

PDF
AI in Finance and Retirement Systems: Insights from the EBRI-Milken Institute...
PDF
Adversarial Machine Learning: A Taxonomy and Terminology of Attacks and Mitig...
PDF
EU Artificial Intelligence Act 2024 passed !
PDF
Managing-the-Risks-of-LLMs-in-FS-Industry-Roundtable-TruEra-QuantU.pdf
PDF
PYTHON AND DATA SCIENCE FOR INVESTMENT PROFESSIONALS
PDF
Qu for India - QuantUniversity FundRaiser
PDF
Ml master class for CFA Dallas
PDF
Algorithmic auditing 1.0
PDF
Towards Fairer Datasets: Filtering and Balancing the Distribution of the Peop...
PDF
Seeing what a gan cannot generate: paper review
PDF
AI Explainability and Model Risk Management
PDF
Machine Learning in Finance: 10 Things You Need to Know in 2021
PDF
The API Jungle
PDF
Explainable AI Workshop
PDF
Constructing Private Asset Benchmarks
PDF
Machine Learning Interpretability
PDF
Responsible AI in Action
PDF
Qu speaker series 14: Synthetic Data Generation in Finance
PDF
Qwafafew meeting 5
PDF
Qu speaker series:Ethical Use of AI in Financial Markets
AI in Finance and Retirement Systems: Insights from the EBRI-Milken Institute...
Adversarial Machine Learning: A Taxonomy and Terminology of Attacks and Mitig...
EU Artificial Intelligence Act 2024 passed !
Managing-the-Risks-of-LLMs-in-FS-Industry-Roundtable-TruEra-QuantU.pdf
PYTHON AND DATA SCIENCE FOR INVESTMENT PROFESSIONALS
Qu for India - QuantUniversity FundRaiser
Ml master class for CFA Dallas
Algorithmic auditing 1.0
Towards Fairer Datasets: Filtering and Balancing the Distribution of the Peop...
Seeing what a gan cannot generate: paper review
AI Explainability and Model Risk Management
Machine Learning in Finance: 10 Things You Need to Know in 2021
The API Jungle
Explainable AI Workshop
Constructing Private Asset Benchmarks
Machine Learning Interpretability
Responsible AI in Action
Qu speaker series 14: Synthetic Data Generation in Finance
Qwafafew meeting 5
Qu speaker series:Ethical Use of AI in Financial Markets

Recently uploaded (20)

PPTX
Sheep Seg. Marketing Plan_C2 2025 (1).pptx
PPTX
OJT-Narrative-Presentation-Entrep-group.pptx_20250808_102837_0000.pptx
PPTX
1 hour to get there before the game is done so you don’t need a car seat for ...
PPTX
langchainpptforbeginners_easy_explanation.pptx
PDF
©️ 01_Algorithm for Microsoft New Product Launch - handling web site - by Ale...
PPTX
PPT for Diseases.pptx, there are 3 types of diseases
PDF
The Role of Pathology AI in Translational Cancer Research and Education
PDF
technical specifications solar ear 2025.
PPTX
Statisticsccdxghbbnhhbvvvvvvvvvv. Dxcvvvhhbdzvbsdvvbbvv ccc
PPTX
cp-and-safeguarding-training-2018-2019-mmfv2-230818062456-767bc1a7.pptx
PPTX
inbound6529290805104538764.pptxmmmmmmmmm
PPTX
Stats annual compiled ipd opd ot br 2024
PPTX
Machine Learning and working of machine Learning
PPTX
Hushh.ai: Your Personal Data, Your Business
PPTX
machinelearningoverview-250809184828-927201d2.pptx
PDF
CS3352FOUNDATION OF DATA SCIENCE _1_MAterial.pdf
PPTX
DATA MODELING, data model concepts, types of data concepts
PPTX
inbound2857676998455010149.pptxmmmmmmmmm
PPTX
ch20 Database System Architecture by Rizvee
PDF
REPORT CARD OF GRADE 2 2025-2026 MATATAG
Sheep Seg. Marketing Plan_C2 2025 (1).pptx
OJT-Narrative-Presentation-Entrep-group.pptx_20250808_102837_0000.pptx
1 hour to get there before the game is done so you don’t need a car seat for ...
langchainpptforbeginners_easy_explanation.pptx
©️ 01_Algorithm for Microsoft New Product Launch - handling web site - by Ale...
PPT for Diseases.pptx, there are 3 types of diseases
The Role of Pathology AI in Translational Cancer Research and Education
technical specifications solar ear 2025.
Statisticsccdxghbbnhhbvvvvvvvvvv. Dxcvvvhhbdzvbsdvvbbvv ccc
cp-and-safeguarding-training-2018-2019-mmfv2-230818062456-767bc1a7.pptx
inbound6529290805104538764.pptxmmmmmmmmm
Stats annual compiled ipd opd ot br 2024
Machine Learning and working of machine Learning
Hushh.ai: Your Personal Data, Your Business
machinelearningoverview-250809184828-927201d2.pptx
CS3352FOUNDATION OF DATA SCIENCE _1_MAterial.pdf
DATA MODELING, data model concepts, types of data concepts
inbound2857676998455010149.pptxmmmmmmmmm
ch20 Database System Architecture by Rizvee
REPORT CARD OF GRADE 2 2025-2026 MATATAG

Time series analysis : Refresher and Innovations

  • 1. Time Series Analysis with the QuSandbox 2018 Copyright QuantUniversity LLC. Presented By: Sri Krishnamurthy, CFA, CAP [email protected] www.quantuniversity.com 11/29/2018 QuantUniversity Meetup Boston
  • 2. 2 About us: • Data Science, Quant Finance and Model Governance Advisory • Technologies using MATLAB, Python and R • Programs ▫ Analytics Certificate Program ▫ Fintech programs • Platform
  • 4. • Founder of QuantUniversity LLC. and www.analyticscertificate.com • Advisory and Consultancy for Financial Analytics • Prior Experience at MathWorks, Citigroup and Endeca and 25+ financial services and energy customers. • Regular Columnist for the Wilmott Magazine • Author of forthcoming book “Financial Modeling: A case study approach” published by Wiley • Charted Financial Analyst and Certified Analytics Professional • Teaches Analytics in the Babson College MBA program and at Northeastern University, Boston Sri Krishnamurthy Founder and CEO 4
  • 5. 5 • 2-day Advances in Time series Workshop ▫ December/Jan - TBD ▫ Stay tuned for details at www.analyticscertificate.com • 2-day Machine Learning in Finance Workshop ▫ Jan 23rd & 24th ▫ Register at www.analyticscertificate.com/MachineLearning Upcoming events
  • 6. 6 Slides will be available at: https://researchhub.qusandbox.com
  • 7. 7 You too can do data science!
  • 8. 8 • Brief intro to Machine Learning • Time Series Analysis – Example • Time Series Analysis – Case study • Demo Agenda
  • 9. 9
  • 10. Dataset, variable and Observations Dataset: A rectangular array with Rows as observations and columns as variables Variable: A characteristic of members of a population ( Age, State etc.) Observation: List of Variable values for a member of the population
  • 11. Variables — A variable could be: —Categorical — Yes/No flags — AAA,BB ratings for bonds —Numerical — 35 mpg — $170K salary
  • 12. Datasets • Longitudinal ▫ Observations are dependent ▫ Temporal-continuity is required • Cross-sectional ▫ Observations are independent
  • 14. 14
  • 15. 15 • Given a dataset, build a model that captures the similarities in different observations and assigns them to different buckets. • Given a set of variables, predict the value of another variable in a given data set ▫ Predict Salaries given work experience, education etc. ▫ Predict whether a loan would be approved given fico score, current loans, employment status etc. Predictive Analytics : Cross sectional datasets
  • 16. 16 • Supervised Algorithms ▫ Given a set of variables !", predict the value of another variable # in a given data set such that ▫ If y is numeric => Prediction ▫ If y is categorical => Classification Machine Learning x1,x2,x3… Model F(X) y
  • 17. 17 • Given a time series dataset, build a model that can be used to forecast values in the future Predictive Analytics : Time series datasets
  • 18. 18 • Goal is to extract and model the various components Time series datasets
  • 19. 19 • https://youtu.be/nIKwXzGieK8?t=63 • Extracting components from time series datasets is like squeezing juice out of sugarcane. Sugarcane analogy
  • 21. 21 Case 2 : Analyzing Swap rates Ref: Statistical Models and Methods for Financial Markets Tze Leung Lai and Haipeng Xing. New York, NY: Springer, 2008. ISBN: 978-0-387-77826-6.
  • 23. Supervised learning Cross-sectional ▫ Observations are independent ▫ Given X1----Xi, predict Y ▫ CNNs
  • 24. Supervised learning Sequential ▫ Sequentially ordered ▫ Given O1---OT, predict OT+1 1 Normal 2 Normal 3 Abnormal 4 Normal 5 Abnormal
  • 25. 25 • Given : X1,X2,X3----XN • Convert the Univariate time series dataset to a cross sectional Dataset Time series modeling in Keras using MLPs X1 X2 X3 X4 X5 X6 X7 X8 X9 X10 X11 X12 X13 X14 X15 X Y X1 X2 X2 X3 X3 X4 X4 X5 X5 X6 X6 X7 X7 X8 X8 X9 X9 X10 X10 X11 X11 X12 X12 X13 X13 X14 X14 X15
  • 26. 26 • Monthly data • Computational Intelligence in Forecasting • Source: http://irafm.osu.cz/cif/main.php?c=Static&page=download Sample data 0 200 400 600 800 1000 1200 1400 1600 1800 1 4 7 10 13 16 19 22 25 28 31 34 37 40 43 46 49 52 55 58 61 64 67 70 73 76 79 82 85 88 91 94 97 100 103 106
  • 27. 27 • Use 72 for training and 36 for testing • Lookback 1, 10 • Longer the lookback, larger the network Multi-Layer Perceptron Size 8 Size 1
  • 28. 28 Demo Train Score: 1972.20 MSE (44.41 RMSE) Test Score: 3001.77 MSE (54.79 RMSE) Train Score: 2631.49 MSE (51.30 RMSE) Test Score: 4166.64 MSE (64.55 RMSE) Lookback = 1 Lookback = 10
  • 29. 29 • Has 3 types of parameters ▫ W – Hidden weights ▫ U – Hidden to Hidden weights ▫ V – Hidden to Label weights • All W,U,V are shared Recurrent Neural Networks1 1. http://ai.stanford.edu/~quocle/tutorial2.pdf
  • 30. 30 Where can Recurrent Neural Networks be used?1 1. http://karpathy.github.io/2015/05/21/rnn-effectiveness/ 1. Vanilla mode of processing without RNN, from fixed-sized input to fixed-sized output (e.g. image classification). 2. Sequence output (e.g. image captioning takes an image and outputs a sentence of words). 3. Sequence input (e.g. sentiment analysis where a given sentence is classified as expressing positive or negative sentiment). 4. Sequence input and sequence output (e.g. Machine Translation: an RNN reads a sentence in English and then outputs a sentence in French). 5. Synced sequence input and output (e.g. video classification where we wish to label each frame of the video).
  • 31. 31 Recurrent Neural Networks • A recurrent neural network can be thought of as multiple copies of the same network, each passing a message to a successor. 1 • Backpropagation(computing gradient wrt all parameters of the network) which is process used to propagate errors and weights needs to be modified for RNNs due to the existence of loops http://colah.github.io/posts/2015-08-Understanding-LSTMs/
  • 32. 32 • BPTT begins by unfolding a recurrent neural network through time as shown in the figure. • Training then proceeds in a manner similar to training a feed- forward neural network with backpropagation, except that the training patterns are visited in sequential order. Back Propagation through time (BPTT)1 1. https://en.wikipedia.org/wiki/Backpropagation_through_time
  • 33. 33 • Backpropagation through time (BPTT) for RNNs is difficult due to a problem known as vanishing/exploding gradient . i.e, the gradient becomes extremely small or large towards the first and end of the network. • This is addressed by LSTM RNNs. Instead of neurons, LSTMs use memory cells 1 Addressing the problem of Vanishing/Exploding gradient http://deeplearning.net/tutorial/lstm.html
  • 35. Sri Krishnamurthy, CFA, CAP Founder and Chief Data Scientist [email protected] srikrishnamurthy www.QuantUniversity.com www.analyticscertificate.com www.qusandbox.com Information, data and drawings embodied in this presentation are strictly a property of QuantUniversity LLC. and shall not be distributed or used in any other publication without the prior written consent of QuantUniversity LLC. 35