SlideShare a Scribd company logo
1 of 19
Bayesian Deep Learning
Dealing with uncertainty and non-stationarity
Dr. Thomas Wiecki
@twiecki
Director of Data Science, Quantopian
Disclaimer
This presentation is for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation
for any security; nor does it constitute an offer to provide investment advisory or other services by Quantopian, Inc. ("Quantopian").
Nothing contained herein constitutes investment advice or offers any opinion with respect to the suitability of any security, and any
views expressed herein should not be taken as advice to buy, sell, or hold any security or as an endorsement of any security or
company. In preparing the information contained herein, Quantopian, Inc. has not taken into account the investment needs, objectives,
and financial circumstances of any particular investor. Any views expressed and data illustrated herein were prepared based upon
information, believed to be reliable, available to Quantopian, Inc. at the time of publication. Quantopian makes no guarantees as to their
accuracy or completeness. All information is subject to change and may quickly become unreliable for various reasons, including
changes in market conditions or economic circumstances.
Quantopian
>120.000 users
(as of April 1,
2017)
Community,
backtester + data,
real-money trading
competitions
Select best
trading strategies
and invest tens of
millions of dollars
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Machine Learning
in Algorithmic
Trading
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Feature
Extraction
Hand-crafted alphas
Classifier
E.g. SVM, Random Forest
Linear risk models
E.g. PCA
Deep Learning
Alphas are learned directly,
instead of defined by hand.
Long-Short-Term-Memory
(LSTM), 1D convolutional nets
Non-linear, hierarchical
risk factors
Deep Auto-Encoder
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
However, certain problems in
algorithmic trading not well solved by
current deep learning research.
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Non-Stationarity / Concept Drift
Markets change
Signals change / become obsolete
Usual solution:
Retrain model every t days, or,
when change is detected.
Unsatisfying:
Old data could still be useful.
Still assumes stationarity inside
window.
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Uncertainty
⚫Models will always predict something, no
way of saying "I don't know".
⚫Unseen input can cause erratic behavior.
⚫Need uncertainty estimate of our
predictions.
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Solution: Combine with Bayesian Modeling
Deep Learning
✓ Great performance
✓ Learn alphas directly from data
✓ Build better risk models
� Only point-estimates - No
uncertainty in predictions
� Can't deal with non-stationarity
Bayesian Modeling
✓ Principled uncertainty
quantification
✓ Very flexible (can model non-
stationarity)
Bayesian Deep LearningCONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Bayesian Modeling: Coin flipping
Latent parameters
(Prior)
Likelihood of data,
given parameters.
Modelconstruction:
Howparameters
relatetodata
Inference:BayesFormula
mostlikelyparametersgiven
data
Data
(Heads / Tails)
Latent parameters
(Posterior)
p(heads)
Observe:
HTTHTTT
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Probabilistic Programming
Latent causes
(Parameters)
Distribution
of Data
Modelconstruction:
Howwasdata
generated
Inference:BayesFormula
mostlikelyparametersgiven
data
Observed Data
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
● Intuitive model specification syntax, for example, x ~ N(0,1) translates to x =
Normal('x', 0, 1)
● Sampling algorithms (MCMC): Accurate approximation of posterior, but slow.
● Variational inference (BBVI): Less accurate approximation, but much faster.
● Uses Theano as computational backend:
⚪ Computation optimization and dynamic C and GPU compilation
⚪ Linear algebra operators
⚪ Simple extensibility
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Time for some
code...
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Resources
⚫ Quantopian: https://www.quantopian.com
⚫ Quant equtiy workflow: https://blog.quantopian.com/a-professional-quant-equity-
workflow/
⚫ Quantopian implementation: https://www.quantopian.com/posts/machine-learning-on-
quantopian
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Deep Learning: Pros and cons
Deep Learning
✓ Great performance
✓ Quite flexible
LSTMs, ConvNets, Neural Computers
✓ Scales well
� Only point-estimates - No uncertainty in predictions
� Overfits easily
� Can't deal with non-stationarity
Bayesian Modeling
✓ Unified framework for model building, inference,
prediction and decision making
✓ Bayesian: Principled uncertainty quantification of
parameters and predictions
✓ Extremely flexible (can model non-stationarity)
✓ Robust to overfitting
� Many conjugate / linear models
� Little application to ML
Natural to try and combine these two:
Bayesian Deep Learning
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Random sample from input data
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Random sample from output data
Looks like a vanilla classification problem. However...
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Probabilistic Programming
1. Build model, specify prior belief.
2. Observe data, update belief to posterior.
3. Canonical example: Coin flipping
Model:
Random variable: p_heads = Beta(1, 1)
Likelihood: Bernoulli(data | p_heads)
Inference:
Infer posterior distribution P(p_heads | data)
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
Disclaimer
This presentation is for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation
for any security; nor does it constitute an offer to provide investment advisory or other services by Quantopian, Inc. ("Quantopian").
Nothing contained herein constitutes investment advice or offers any opinion with respect to the suitability of any security, and any
views expressed herein should not be taken as advice to buy, sell, or hold any security or as an endorsement of any security or
company. In preparing the information contained herein, Quantopian, Inc. has not taken into account the investment needs, objectives,
and financial circumstances of any particular investor. Any views expressed and data illustrated herein were prepared based upon
information, believed to be reliable, available to Quantopian, Inc. at the time of publication. Quantopian makes no guarantees as to their
accuracy or completeness. All information is subject to change and may quickly become unreliable for various reasons, including
changes in market conditions or economic circumstances.
CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN

More Related Content

What's hot

"From Trading Strategy to Becoming an Industry Professional – How to Break in...
"From Trading Strategy to Becoming an Industry Professional – How to Break in..."From Trading Strategy to Becoming an Industry Professional – How to Break in...
"From Trading Strategy to Becoming an Industry Professional – How to Break in...Quantopian
 
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin..."Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...Quantopian
 
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle..."Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...Quantopian
 
"From Alpha Discovery to Portfolio Construction: Pitfalls and Solutions" by D...
"From Alpha Discovery to Portfolio Construction: Pitfalls and Solutions" by D..."From Alpha Discovery to Portfolio Construction: Pitfalls and Solutions" by D...
"From Alpha Discovery to Portfolio Construction: Pitfalls and Solutions" by D...Quantopian
 
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe..."Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...Quantopian
 
Algorithmic Finance Meetup: Starmine Short Interest Talk
Algorithmic Finance Meetup: Starmine Short Interest Talk Algorithmic Finance Meetup: Starmine Short Interest Talk
Algorithmic Finance Meetup: Starmine Short Interest Talk Quantopian
 
Taking on Wall Street: A Comparative Study of Strategies Sourced from "The Pr...
Taking on Wall Street: A Comparative Study of Strategies Sourced from "The Pr...Taking on Wall Street: A Comparative Study of Strategies Sourced from "The Pr...
Taking on Wall Street: A Comparative Study of Strategies Sourced from "The Pr...Quantopian
 
"A Framework-Based Approach to Building Quantitative Trading Systems" by Dr. ...
"A Framework-Based Approach to Building Quantitative Trading Systems" by Dr. ..."A Framework-Based Approach to Building Quantitative Trading Systems" by Dr. ...
"A Framework-Based Approach to Building Quantitative Trading Systems" by Dr. ...Quantopian
 
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ..."Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...Quantopian
 
"Quantitative Trading as a Mathematical Science" by Dr. Haksun Li, Founder an...
"Quantitative Trading as a Mathematical Science" by Dr. Haksun Li, Founder an..."Quantitative Trading as a Mathematical Science" by Dr. Haksun Li, Founder an...
"Quantitative Trading as a Mathematical Science" by Dr. Haksun Li, Founder an...Quantopian
 
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author..."Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...Quantopian
 
10 Ways Backtests Lie by Tucker Balch
10 Ways Backtests Lie by Tucker Balch10 Ways Backtests Lie by Tucker Balch
10 Ways Backtests Lie by Tucker BalchQuantopian
 
All About Factors & Smart Beta
All About Factors & Smart BetaAll About Factors & Smart Beta
All About Factors & Smart BetaCorey Hoffstein
 
Smart Beta Investing - Trends and Opportunities
Smart Beta Investing - Trends and OpportunitiesSmart Beta Investing - Trends and Opportunities
Smart Beta Investing - Trends and OpportunitiesAmit Sinha
 
Smart Beta - Lessons from the Oracle of Omaha
Smart Beta - Lessons from the Oracle of OmahaSmart Beta - Lessons from the Oracle of Omaha
Smart Beta - Lessons from the Oracle of OmahaCorey Hoffstein
 
Building an Unconstrained Sleeve
Building an Unconstrained SleeveBuilding an Unconstrained Sleeve
Building an Unconstrained SleeveCorey Hoffstein
 
Being open (source) in the traditionally secretive field of quant finance.
Being open (source) in the traditionally secretive field of quant finance.Being open (source) in the traditionally secretive field of quant finance.
Being open (source) in the traditionally secretive field of quant finance.Quantopian
 
DIY Quant Strategies on Quantopian
DIY Quant Strategies on QuantopianDIY Quant Strategies on Quantopian
DIY Quant Strategies on QuantopianJess Stauth
 

What's hot (20)

"From Trading Strategy to Becoming an Industry Professional – How to Break in...
"From Trading Strategy to Becoming an Industry Professional – How to Break in..."From Trading Strategy to Becoming an Industry Professional – How to Break in...
"From Trading Strategy to Becoming an Industry Professional – How to Break in...
 
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin..."Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...
"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managin...
 
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle..."Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...
"Build Effective Risk Management on Top of Your Trading Strategy" by Danielle...
 
"From Alpha Discovery to Portfolio Construction: Pitfalls and Solutions" by D...
"From Alpha Discovery to Portfolio Construction: Pitfalls and Solutions" by D..."From Alpha Discovery to Portfolio Construction: Pitfalls and Solutions" by D...
"From Alpha Discovery to Portfolio Construction: Pitfalls and Solutions" by D...
 
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe..."Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...
"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independe...
 
Algorithmic Finance Meetup: Starmine Short Interest Talk
Algorithmic Finance Meetup: Starmine Short Interest Talk Algorithmic Finance Meetup: Starmine Short Interest Talk
Algorithmic Finance Meetup: Starmine Short Interest Talk
 
Taking on Wall Street: A Comparative Study of Strategies Sourced from "The Pr...
Taking on Wall Street: A Comparative Study of Strategies Sourced from "The Pr...Taking on Wall Street: A Comparative Study of Strategies Sourced from "The Pr...
Taking on Wall Street: A Comparative Study of Strategies Sourced from "The Pr...
 
"A Framework-Based Approach to Building Quantitative Trading Systems" by Dr. ...
"A Framework-Based Approach to Building Quantitative Trading Systems" by Dr. ..."A Framework-Based Approach to Building Quantitative Trading Systems" by Dr. ...
"A Framework-Based Approach to Building Quantitative Trading Systems" by Dr. ...
 
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ..."Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...
"Opportunities and Pitfalls in Momentum Investing" by Gary Antonacci, Author ...
 
Smart Beta 101
Smart Beta 101Smart Beta 101
Smart Beta 101
 
"Quantitative Trading as a Mathematical Science" by Dr. Haksun Li, Founder an...
"Quantitative Trading as a Mathematical Science" by Dr. Haksun Li, Founder an..."Quantitative Trading as a Mathematical Science" by Dr. Haksun Li, Founder an...
"Quantitative Trading as a Mathematical Science" by Dr. Haksun Li, Founder an...
 
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author..."Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...
"Snake Oil, Swamp Land, and Factor-Based Investing" by Gary Antonacci, author...
 
10 Ways Backtests Lie by Tucker Balch
10 Ways Backtests Lie by Tucker Balch10 Ways Backtests Lie by Tucker Balch
10 Ways Backtests Lie by Tucker Balch
 
All About Factors & Smart Beta
All About Factors & Smart BetaAll About Factors & Smart Beta
All About Factors & Smart Beta
 
Smart Beta Investing - Trends and Opportunities
Smart Beta Investing - Trends and OpportunitiesSmart Beta Investing - Trends and Opportunities
Smart Beta Investing - Trends and Opportunities
 
Smart Beta - Lessons from the Oracle of Omaha
Smart Beta - Lessons from the Oracle of OmahaSmart Beta - Lessons from the Oracle of Omaha
Smart Beta - Lessons from the Oracle of Omaha
 
Money management in equilibrium
Money management in equilibrium Money management in equilibrium
Money management in equilibrium
 
Building an Unconstrained Sleeve
Building an Unconstrained SleeveBuilding an Unconstrained Sleeve
Building an Unconstrained Sleeve
 
Being open (source) in the traditionally secretive field of quant finance.
Being open (source) in the traditionally secretive field of quant finance.Being open (source) in the traditionally secretive field of quant finance.
Being open (source) in the traditionally secretive field of quant finance.
 
DIY Quant Strategies on Quantopian
DIY Quant Strategies on QuantopianDIY Quant Strategies on Quantopian
DIY Quant Strategies on Quantopian
 

Similar to Bayesian Deep Learning for Uncertainty and Non-Stationarity

Bayesian Portfolio Allocation
Bayesian Portfolio AllocationBayesian Portfolio Allocation
Bayesian Portfolio AllocationQuantUniversity
 
Iceberg Webinar: Adding relevant financial context to your BCM program
Iceberg Webinar: Adding relevant financial context to your BCM programIceberg Webinar: Adding relevant financial context to your BCM program
Iceberg Webinar: Adding relevant financial context to your BCM program Iceberg Networks Corporation
 
Modeling the Stock Market: Common pitfalls and how to avoid them!
Modeling the Stock Market: Common pitfalls and how to avoid them!Modeling the Stock Market: Common pitfalls and how to avoid them!
Modeling the Stock Market: Common pitfalls and how to avoid them!Jess Stauth
 
SteppenWolf Capital - NOAH19 Berlin
SteppenWolf Capital - NOAH19 BerlinSteppenWolf Capital - NOAH19 Berlin
SteppenWolf Capital - NOAH19 BerlinNOAH Advisors
 
A systematic fund of managed accounts ( Jun 2011 )
A systematic fund of managed accounts ( Jun 2011 )A systematic fund of managed accounts ( Jun 2011 )
A systematic fund of managed accounts ( Jun 2011 )Peter Urbani
 
Q2 fy16 investor overview presentation
Q2 fy16 investor overview presentationQ2 fy16 investor overview presentation
Q2 fy16 investor overview presentationnimblestorageIR
 
Impact of Valuation Adjustments (CVA, DVA, FVA, KVA) on Bank's Processes - An...
Impact of Valuation Adjustments (CVA, DVA, FVA, KVA) on Bank's Processes - An...Impact of Valuation Adjustments (CVA, DVA, FVA, KVA) on Bank's Processes - An...
Impact of Valuation Adjustments (CVA, DVA, FVA, KVA) on Bank's Processes - An...Andrea Gigli
 
Investor overview presentation
Investor overview presentationInvestor overview presentation
Investor overview presentationnimblestorageIR
 
[PositConf 2023] How Data Scientists Broke A/B Testing (and How We Can Fix It)
[PositConf 2023] How Data Scientists Broke A/B Testing (and How We Can Fix It)[PositConf 2023] How Data Scientists Broke A/B Testing (and How We Can Fix It)
[PositConf 2023] How Data Scientists Broke A/B Testing (and How We Can Fix It)Carl Vogel
 
Splunk4Leaders
Splunk4Leaders Splunk4Leaders
Splunk4Leaders Splunk
 
Machine learning for factor investing
Machine learning for factor investingMachine learning for factor investing
Machine learning for factor investingQuantUniversity
 
Techno buy Persistent on 30/6/2015
Techno buy Persistent on 30/6/2015Techno buy Persistent on 30/6/2015
Techno buy Persistent on 30/6/2015choice broking
 
Using Oculus Rift and VR to Visualize Data on Salesforce
Using Oculus Rift and VR to Visualize Data on SalesforceUsing Oculus Rift and VR to Visualize Data on Salesforce
Using Oculus Rift and VR to Visualize Data on SalesforceCodeScience
 
2018 SOA Annual Meeting: Session 8 - Model validation and governance in the P...
2018 SOA Annual Meeting: Session 8 - Model validation and governance in the P...2018 SOA Annual Meeting: Session 8 - Model validation and governance in the P...
2018 SOA Annual Meeting: Session 8 - Model validation and governance in the P...Alex Hovi
 
Computing as a Service - 7 Insights on the Future of Cloud Computing
Computing as a Service - 7 Insights on the Future of Cloud ComputingComputing as a Service - 7 Insights on the Future of Cloud Computing
Computing as a Service - 7 Insights on the Future of Cloud ComputingOpsCamp
 
Agil bleiben - Motorhaube auf bei XING
Agil bleiben - Motorhaube auf bei XINGAgil bleiben - Motorhaube auf bei XING
Agil bleiben - Motorhaube auf bei XINGXING AG
 
What are the odds of making that number risk analysis with crystal ball - O...
What are the odds of making that number   risk analysis with crystal ball - O...What are the odds of making that number   risk analysis with crystal ball - O...
What are the odds of making that number risk analysis with crystal ball - O...p6academy
 
Sales Portfolio & Forecasting System
Sales Portfolio & Forecasting SystemSales Portfolio & Forecasting System
Sales Portfolio & Forecasting SystemRobert Brown
 
Enterprise Risk Analysis PowerPoint Presentation Slides
Enterprise Risk Analysis PowerPoint Presentation SlidesEnterprise Risk Analysis PowerPoint Presentation Slides
Enterprise Risk Analysis PowerPoint Presentation SlidesSlideTeam
 

Similar to Bayesian Deep Learning for Uncertainty and Non-Stationarity (20)

Bayesian Portfolio Allocation
Bayesian Portfolio AllocationBayesian Portfolio Allocation
Bayesian Portfolio Allocation
 
Iceberg Webinar: Adding relevant financial context to your BCM program
Iceberg Webinar: Adding relevant financial context to your BCM programIceberg Webinar: Adding relevant financial context to your BCM program
Iceberg Webinar: Adding relevant financial context to your BCM program
 
Modeling the Stock Market: Common pitfalls and how to avoid them!
Modeling the Stock Market: Common pitfalls and how to avoid them!Modeling the Stock Market: Common pitfalls and how to avoid them!
Modeling the Stock Market: Common pitfalls and how to avoid them!
 
SteppenWolf Capital - NOAH19 Berlin
SteppenWolf Capital - NOAH19 BerlinSteppenWolf Capital - NOAH19 Berlin
SteppenWolf Capital - NOAH19 Berlin
 
A systematic fund of managed accounts ( Jun 2011 )
A systematic fund of managed accounts ( Jun 2011 )A systematic fund of managed accounts ( Jun 2011 )
A systematic fund of managed accounts ( Jun 2011 )
 
Q2 fy16 investor overview presentation
Q2 fy16 investor overview presentationQ2 fy16 investor overview presentation
Q2 fy16 investor overview presentation
 
Impact of Valuation Adjustments (CVA, DVA, FVA, KVA) on Bank's Processes - An...
Impact of Valuation Adjustments (CVA, DVA, FVA, KVA) on Bank's Processes - An...Impact of Valuation Adjustments (CVA, DVA, FVA, KVA) on Bank's Processes - An...
Impact of Valuation Adjustments (CVA, DVA, FVA, KVA) on Bank's Processes - An...
 
Investor overview presentation
Investor overview presentationInvestor overview presentation
Investor overview presentation
 
[PositConf 2023] How Data Scientists Broke A/B Testing (and How We Can Fix It)
[PositConf 2023] How Data Scientists Broke A/B Testing (and How We Can Fix It)[PositConf 2023] How Data Scientists Broke A/B Testing (and How We Can Fix It)
[PositConf 2023] How Data Scientists Broke A/B Testing (and How We Can Fix It)
 
Splunk4Leaders
Splunk4Leaders Splunk4Leaders
Splunk4Leaders
 
Machine learning for factor investing
Machine learning for factor investingMachine learning for factor investing
Machine learning for factor investing
 
Techno buy Persistent on 30/6/2015
Techno buy Persistent on 30/6/2015Techno buy Persistent on 30/6/2015
Techno buy Persistent on 30/6/2015
 
Valuation Overview
Valuation OverviewValuation Overview
Valuation Overview
 
Using Oculus Rift and VR to Visualize Data on Salesforce
Using Oculus Rift and VR to Visualize Data on SalesforceUsing Oculus Rift and VR to Visualize Data on Salesforce
Using Oculus Rift and VR to Visualize Data on Salesforce
 
2018 SOA Annual Meeting: Session 8 - Model validation and governance in the P...
2018 SOA Annual Meeting: Session 8 - Model validation and governance in the P...2018 SOA Annual Meeting: Session 8 - Model validation and governance in the P...
2018 SOA Annual Meeting: Session 8 - Model validation and governance in the P...
 
Computing as a Service - 7 Insights on the Future of Cloud Computing
Computing as a Service - 7 Insights on the Future of Cloud ComputingComputing as a Service - 7 Insights on the Future of Cloud Computing
Computing as a Service - 7 Insights on the Future of Cloud Computing
 
Agil bleiben - Motorhaube auf bei XING
Agil bleiben - Motorhaube auf bei XINGAgil bleiben - Motorhaube auf bei XING
Agil bleiben - Motorhaube auf bei XING
 
What are the odds of making that number risk analysis with crystal ball - O...
What are the odds of making that number   risk analysis with crystal ball - O...What are the odds of making that number   risk analysis with crystal ball - O...
What are the odds of making that number risk analysis with crystal ball - O...
 
Sales Portfolio & Forecasting System
Sales Portfolio & Forecasting SystemSales Portfolio & Forecasting System
Sales Portfolio & Forecasting System
 
Enterprise Risk Analysis PowerPoint Presentation Slides
Enterprise Risk Analysis PowerPoint Presentation SlidesEnterprise Risk Analysis PowerPoint Presentation Slides
Enterprise Risk Analysis PowerPoint Presentation Slides
 

More from Quantopian

"Alpha from Alternative Data" by Emmett Kilduff, Founder and CEO of Eagle Alpha
"Alpha from Alternative Data" by Emmett Kilduff,  Founder and CEO of Eagle Alpha"Alpha from Alternative Data" by Emmett Kilduff,  Founder and CEO of Eagle Alpha
"Alpha from Alternative Data" by Emmett Kilduff, Founder and CEO of Eagle AlphaQuantopian
 
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese..."Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...Quantopian
 
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...Quantopian
 
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...Quantopian
 
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin..."Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...Quantopian
 
"How to Run a Quantitative Trading Business in China with Python" by Xiaoyou ...
"How to Run a Quantitative Trading Business in China with Python" by Xiaoyou ..."How to Run a Quantitative Trading Business in China with Python" by Xiaoyou ...
"How to Run a Quantitative Trading Business in China with Python" by Xiaoyou ...Quantopian
 
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo..."Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...Quantopian
 
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos..."Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...Quantopian
 
"From Insufficient Economic data to Economic Big Data – How Trade Data is red...
"From Insufficient Economic data to Economic Big Data – How Trade Data is red..."From Insufficient Economic data to Economic Big Data – How Trade Data is red...
"From Insufficient Economic data to Economic Big Data – How Trade Data is red...Quantopian
 
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael..."Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...Quantopian
 
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ..."Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...Quantopian
 
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C..."Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...Quantopian
 
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ..."Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...Quantopian
 
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen..."On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...Quantopian
 
"Correlated Volatility Shocks" by Dr. Xiao Qiao, Researcher at SummerHaven In...
"Correlated Volatility Shocks" by Dr. Xiao Qiao, Researcher at SummerHaven In..."Correlated Volatility Shocks" by Dr. Xiao Qiao, Researcher at SummerHaven In...
"Correlated Volatility Shocks" by Dr. Xiao Qiao, Researcher at SummerHaven In...Quantopian
 
"Identifying Credibility of News" by Dr. Sameena Shah, Director of Research f...
"Identifying Credibility of News" by Dr. Sameena Shah, Director of Research f..."Identifying Credibility of News" by Dr. Sameena Shah, Director of Research f...
"Identifying Credibility of News" by Dr. Sameena Shah, Director of Research f...Quantopian
 

More from Quantopian (16)

"Alpha from Alternative Data" by Emmett Kilduff, Founder and CEO of Eagle Alpha
"Alpha from Alternative Data" by Emmett Kilduff,  Founder and CEO of Eagle Alpha"Alpha from Alternative Data" by Emmett Kilduff,  Founder and CEO of Eagle Alpha
"Alpha from Alternative Data" by Emmett Kilduff, Founder and CEO of Eagle Alpha
 
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese..."Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...
"Supply Chain Earnings Diffusion" by Josh Holcroft, Head of Quantitative Rese...
 
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...
“Real Time Machine Learning Architecture and Sentiment Analysis Applied to Fi...
 
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...
“Market Insights Through the Lens of a Risk Model” by Olivier d'Assier, Head ...
 
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin..."Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...
"Maximize Alpha with Systematic Factor Testing" by Cheng Peng, Software Engin...
 
"How to Run a Quantitative Trading Business in China with Python" by Xiaoyou ...
"How to Run a Quantitative Trading Business in China with Python" by Xiaoyou ..."How to Run a Quantitative Trading Business in China with Python" by Xiaoyou ...
"How to Run a Quantitative Trading Business in China with Python" by Xiaoyou ...
 
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo..."Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...
"Deep Reinforcement Learning for Optimal Order Placement in a Limit Order Boo...
 
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos..."Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...
"Building Diversified Portfolios that Outperform Out-of-Sample" by Dr. Marcos...
 
"From Insufficient Economic data to Economic Big Data – How Trade Data is red...
"From Insufficient Economic data to Economic Big Data – How Trade Data is red..."From Insufficient Economic data to Economic Big Data – How Trade Data is red...
"From Insufficient Economic data to Economic Big Data – How Trade Data is red...
 
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael..."Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...
"Machine Learning Approaches to Regime-aware Portfolio Management" by Michael...
 
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ..."Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...
"Don't Lose Your Shirt Trading Mean-Reversion" by Edith Mandel, Principal at ...
 
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C..."Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...
"Deep Q-Learning for Trading" by Dr. Tucker Balch, Professor of Interactive C...
 
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ..."Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...
"Quantum Hierarchical Risk Parity - A Quantum-Inspired Approach to Portfolio ...
 
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen..."On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...
"On the Bayesian Interpretation of Black–Litterman" by Dr. Gordon Ritter, Sen...
 
"Correlated Volatility Shocks" by Dr. Xiao Qiao, Researcher at SummerHaven In...
"Correlated Volatility Shocks" by Dr. Xiao Qiao, Researcher at SummerHaven In..."Correlated Volatility Shocks" by Dr. Xiao Qiao, Researcher at SummerHaven In...
"Correlated Volatility Shocks" by Dr. Xiao Qiao, Researcher at SummerHaven In...
 
"Identifying Credibility of News" by Dr. Sameena Shah, Director of Research f...
"Identifying Credibility of News" by Dr. Sameena Shah, Director of Research f..."Identifying Credibility of News" by Dr. Sameena Shah, Director of Research f...
"Identifying Credibility of News" by Dr. Sameena Shah, Director of Research f...
 

Recently uploaded

WhatsApp 📞 Call : 9892124323 ✅Call Girls In Chembur ( Mumbai ) secure service
WhatsApp 📞 Call : 9892124323  ✅Call Girls In Chembur ( Mumbai ) secure serviceWhatsApp 📞 Call : 9892124323  ✅Call Girls In Chembur ( Mumbai ) secure service
WhatsApp 📞 Call : 9892124323 ✅Call Girls In Chembur ( Mumbai ) secure servicePooja Nehwal
 
The Economic History of the U.S. Lecture 21.pdf
The Economic History of the U.S. Lecture 21.pdfThe Economic History of the U.S. Lecture 21.pdf
The Economic History of the U.S. Lecture 21.pdfGale Pooley
 
Basic concepts related to Financial modelling
Basic concepts related to Financial modellingBasic concepts related to Financial modelling
Basic concepts related to Financial modellingbaijup5
 
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best sexual serviceCALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best sexual serviceanilsa9823
 
The Economic History of the U.S. Lecture 20.pdf
The Economic History of the U.S. Lecture 20.pdfThe Economic History of the U.S. Lecture 20.pdf
The Economic History of the U.S. Lecture 20.pdfGale Pooley
 
Stock Market Brief Deck (Under Pressure).pdf
Stock Market Brief Deck (Under Pressure).pdfStock Market Brief Deck (Under Pressure).pdf
Stock Market Brief Deck (Under Pressure).pdfMichael Silva
 
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...ssifa0344
 
20240429 Calibre April 2024 Investor Presentation.pdf
20240429 Calibre April 2024 Investor Presentation.pdf20240429 Calibre April 2024 Investor Presentation.pdf
20240429 Calibre April 2024 Investor Presentation.pdfAdnet Communications
 
High Class Call Girls Nashik Maya 7001305949 Independent Escort Service Nashik
High Class Call Girls Nashik Maya 7001305949 Independent Escort Service NashikHigh Class Call Girls Nashik Maya 7001305949 Independent Escort Service Nashik
High Class Call Girls Nashik Maya 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdfFinTech Belgium
 
Dharavi Russian callg Girls, { 09892124323 } || Call Girl In Mumbai ...
Dharavi Russian callg Girls, { 09892124323 } || Call Girl In Mumbai ...Dharavi Russian callg Girls, { 09892124323 } || Call Girl In Mumbai ...
Dharavi Russian callg Girls, { 09892124323 } || Call Girl In Mumbai ...Pooja Nehwal
 
05_Annelore Lenoir_Docbyte_MeetupDora&Cybersecurity.pptx
05_Annelore Lenoir_Docbyte_MeetupDora&Cybersecurity.pptx05_Annelore Lenoir_Docbyte_MeetupDora&Cybersecurity.pptx
05_Annelore Lenoir_Docbyte_MeetupDora&Cybersecurity.pptxFinTech Belgium
 
Indore Real Estate Market Trends Report.pdf
Indore Real Estate Market Trends Report.pdfIndore Real Estate Market Trends Report.pdf
Indore Real Estate Market Trends Report.pdfSaviRakhecha1
 
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
(ANIKA) Budhwar Peth Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANIKA) Budhwar Peth Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANIKA) Budhwar Peth Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANIKA) Budhwar Peth Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Booking open Available Pune Call Girls Talegaon Dabhade 6297143586 Call Hot ...
Booking open Available Pune Call Girls Talegaon Dabhade  6297143586 Call Hot ...Booking open Available Pune Call Girls Talegaon Dabhade  6297143586 Call Hot ...
Booking open Available Pune Call Girls Talegaon Dabhade 6297143586 Call Hot ...Call Girls in Nagpur High Profile
 
Gurley shaw Theory of Monetary Economics.
Gurley shaw Theory of Monetary Economics.Gurley shaw Theory of Monetary Economics.
Gurley shaw Theory of Monetary Economics.Vinodha Devi
 

Recently uploaded (20)

WhatsApp 📞 Call : 9892124323 ✅Call Girls In Chembur ( Mumbai ) secure service
WhatsApp 📞 Call : 9892124323  ✅Call Girls In Chembur ( Mumbai ) secure serviceWhatsApp 📞 Call : 9892124323  ✅Call Girls In Chembur ( Mumbai ) secure service
WhatsApp 📞 Call : 9892124323 ✅Call Girls In Chembur ( Mumbai ) secure service
 
The Economic History of the U.S. Lecture 21.pdf
The Economic History of the U.S. Lecture 21.pdfThe Economic History of the U.S. Lecture 21.pdf
The Economic History of the U.S. Lecture 21.pdf
 
Basic concepts related to Financial modelling
Basic concepts related to Financial modellingBasic concepts related to Financial modelling
Basic concepts related to Financial modelling
 
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best sexual serviceCALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best sexual service
 
The Economic History of the U.S. Lecture 20.pdf
The Economic History of the U.S. Lecture 20.pdfThe Economic History of the U.S. Lecture 20.pdf
The Economic History of the U.S. Lecture 20.pdf
 
Stock Market Brief Deck (Under Pressure).pdf
Stock Market Brief Deck (Under Pressure).pdfStock Market Brief Deck (Under Pressure).pdf
Stock Market Brief Deck (Under Pressure).pdf
 
VIP Call Girl in Mira Road 💧 9920725232 ( Call Me ) Get A New Crush Everyday ...
VIP Call Girl in Mira Road 💧 9920725232 ( Call Me ) Get A New Crush Everyday ...VIP Call Girl in Mira Road 💧 9920725232 ( Call Me ) Get A New Crush Everyday ...
VIP Call Girl in Mira Road 💧 9920725232 ( Call Me ) Get A New Crush Everyday ...
 
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
 
20240429 Calibre April 2024 Investor Presentation.pdf
20240429 Calibre April 2024 Investor Presentation.pdf20240429 Calibre April 2024 Investor Presentation.pdf
20240429 Calibre April 2024 Investor Presentation.pdf
 
High Class Call Girls Nashik Maya 7001305949 Independent Escort Service Nashik
High Class Call Girls Nashik Maya 7001305949 Independent Escort Service NashikHigh Class Call Girls Nashik Maya 7001305949 Independent Escort Service Nashik
High Class Call Girls Nashik Maya 7001305949 Independent Escort Service Nashik
 
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf
 
Dharavi Russian callg Girls, { 09892124323 } || Call Girl In Mumbai ...
Dharavi Russian callg Girls, { 09892124323 } || Call Girl In Mumbai ...Dharavi Russian callg Girls, { 09892124323 } || Call Girl In Mumbai ...
Dharavi Russian callg Girls, { 09892124323 } || Call Girl In Mumbai ...
 
05_Annelore Lenoir_Docbyte_MeetupDora&Cybersecurity.pptx
05_Annelore Lenoir_Docbyte_MeetupDora&Cybersecurity.pptx05_Annelore Lenoir_Docbyte_MeetupDora&Cybersecurity.pptx
05_Annelore Lenoir_Docbyte_MeetupDora&Cybersecurity.pptx
 
VIP Independent Call Girls in Bandra West 🌹 9920725232 ( Call Me ) Mumbai Esc...
VIP Independent Call Girls in Bandra West 🌹 9920725232 ( Call Me ) Mumbai Esc...VIP Independent Call Girls in Bandra West 🌹 9920725232 ( Call Me ) Mumbai Esc...
VIP Independent Call Girls in Bandra West 🌹 9920725232 ( Call Me ) Mumbai Esc...
 
Indore Real Estate Market Trends Report.pdf
Indore Real Estate Market Trends Report.pdfIndore Real Estate Market Trends Report.pdf
Indore Real Estate Market Trends Report.pdf
 
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
(Vedika) Low Rate Call Girls in Pune Call Now 8250077686 Pune Escorts 24x7
(Vedika) Low Rate Call Girls in Pune Call Now 8250077686 Pune Escorts 24x7(Vedika) Low Rate Call Girls in Pune Call Now 8250077686 Pune Escorts 24x7
(Vedika) Low Rate Call Girls in Pune Call Now 8250077686 Pune Escorts 24x7
 
(ANIKA) Budhwar Peth Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANIKA) Budhwar Peth Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANIKA) Budhwar Peth Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANIKA) Budhwar Peth Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Booking open Available Pune Call Girls Talegaon Dabhade 6297143586 Call Hot ...
Booking open Available Pune Call Girls Talegaon Dabhade  6297143586 Call Hot ...Booking open Available Pune Call Girls Talegaon Dabhade  6297143586 Call Hot ...
Booking open Available Pune Call Girls Talegaon Dabhade 6297143586 Call Hot ...
 
Gurley shaw Theory of Monetary Economics.
Gurley shaw Theory of Monetary Economics.Gurley shaw Theory of Monetary Economics.
Gurley shaw Theory of Monetary Economics.
 

Bayesian Deep Learning for Uncertainty and Non-Stationarity

  • 1. Bayesian Deep Learning Dealing with uncertainty and non-stationarity Dr. Thomas Wiecki @twiecki Director of Data Science, Quantopian
  • 2. Disclaimer This presentation is for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation for any security; nor does it constitute an offer to provide investment advisory or other services by Quantopian, Inc. ("Quantopian"). Nothing contained herein constitutes investment advice or offers any opinion with respect to the suitability of any security, and any views expressed herein should not be taken as advice to buy, sell, or hold any security or as an endorsement of any security or company. In preparing the information contained herein, Quantopian, Inc. has not taken into account the investment needs, objectives, and financial circumstances of any particular investor. Any views expressed and data illustrated herein were prepared based upon information, believed to be reliable, available to Quantopian, Inc. at the time of publication. Quantopian makes no guarantees as to their accuracy or completeness. All information is subject to change and may quickly become unreliable for various reasons, including changes in market conditions or economic circumstances.
  • 3. Quantopian >120.000 users (as of April 1, 2017) Community, backtester + data, real-money trading competitions Select best trading strategies and invest tens of millions of dollars CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 4. Machine Learning in Algorithmic Trading CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 5. Feature Extraction Hand-crafted alphas Classifier E.g. SVM, Random Forest Linear risk models E.g. PCA Deep Learning Alphas are learned directly, instead of defined by hand. Long-Short-Term-Memory (LSTM), 1D convolutional nets Non-linear, hierarchical risk factors Deep Auto-Encoder CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 6. However, certain problems in algorithmic trading not well solved by current deep learning research. CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 7. Non-Stationarity / Concept Drift Markets change Signals change / become obsolete Usual solution: Retrain model every t days, or, when change is detected. Unsatisfying: Old data could still be useful. Still assumes stationarity inside window. CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 8. Uncertainty ⚫Models will always predict something, no way of saying "I don't know". ⚫Unseen input can cause erratic behavior. ⚫Need uncertainty estimate of our predictions. CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 9. Solution: Combine with Bayesian Modeling Deep Learning ✓ Great performance ✓ Learn alphas directly from data ✓ Build better risk models � Only point-estimates - No uncertainty in predictions � Can't deal with non-stationarity Bayesian Modeling ✓ Principled uncertainty quantification ✓ Very flexible (can model non- stationarity) Bayesian Deep LearningCONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 10. Bayesian Modeling: Coin flipping Latent parameters (Prior) Likelihood of data, given parameters. Modelconstruction: Howparameters relatetodata Inference:BayesFormula mostlikelyparametersgiven data Data (Heads / Tails) Latent parameters (Posterior) p(heads) Observe: HTTHTTT CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 11. Probabilistic Programming Latent causes (Parameters) Distribution of Data Modelconstruction: Howwasdata generated Inference:BayesFormula mostlikelyparametersgiven data Observed Data CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 12. ● Intuitive model specification syntax, for example, x ~ N(0,1) translates to x = Normal('x', 0, 1) ● Sampling algorithms (MCMC): Accurate approximation of posterior, but slow. ● Variational inference (BBVI): Less accurate approximation, but much faster. ● Uses Theano as computational backend: ⚪ Computation optimization and dynamic C and GPU compilation ⚪ Linear algebra operators ⚪ Simple extensibility CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 13. Time for some code... CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 14. Resources ⚫ Quantopian: https://www.quantopian.com ⚫ Quant equtiy workflow: https://blog.quantopian.com/a-professional-quant-equity- workflow/ ⚫ Quantopian implementation: https://www.quantopian.com/posts/machine-learning-on- quantopian CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 15. Deep Learning: Pros and cons Deep Learning ✓ Great performance ✓ Quite flexible LSTMs, ConvNets, Neural Computers ✓ Scales well � Only point-estimates - No uncertainty in predictions � Overfits easily � Can't deal with non-stationarity Bayesian Modeling ✓ Unified framework for model building, inference, prediction and decision making ✓ Bayesian: Principled uncertainty quantification of parameters and predictions ✓ Extremely flexible (can model non-stationarity) ✓ Robust to overfitting � Many conjugate / linear models � Little application to ML Natural to try and combine these two: Bayesian Deep Learning CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 16. Random sample from input data CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 17. Random sample from output data Looks like a vanilla classification problem. However... CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 18. Probabilistic Programming 1. Build model, specify prior belief. 2. Observe data, update belief to posterior. 3. Canonical example: Coin flipping Model: Random variable: p_heads = Beta(1, 1) Likelihood: Bernoulli(data | p_heads) Inference: Infer posterior distribution P(p_heads | data) CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN
  • 19. Disclaimer This presentation is for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation for any security; nor does it constitute an offer to provide investment advisory or other services by Quantopian, Inc. ("Quantopian"). Nothing contained herein constitutes investment advice or offers any opinion with respect to the suitability of any security, and any views expressed herein should not be taken as advice to buy, sell, or hold any security or as an endorsement of any security or company. In preparing the information contained herein, Quantopian, Inc. has not taken into account the investment needs, objectives, and financial circumstances of any particular investor. Any views expressed and data illustrated herein were prepared based upon information, believed to be reliable, available to Quantopian, Inc. at the time of publication. Quantopian makes no guarantees as to their accuracy or completeness. All information is subject to change and may quickly become unreliable for various reasons, including changes in market conditions or economic circumstances. CONFIDENTIAL AND PROPRIETARY - NOT FOR DISTRIBUTION WITHOUT THE WRITTEN CONSENT OF QUANTOPIAN