SlideShare a Scribd company logo
Enhancing Statistical Significance
of Backtests
Ernie Chan, Ph.D.
QTS Capital Management, LLC.
• Previously, researcher at IBM T. J. Watson Lab in machine
learning, researcher/trader for Morgan Stanley, Credit Suisse,
and various hedge funds.
• Managing Member of QTS Capital Management, LLC., a
commodity pool operator and trading advisor.
• Author:
– Machine Trading: Deploying Computer Algorithms to Conquer
the Markets (Wiley 2017).
– Algorithmic Trading: Winning Strategies and Their Rationale (Wiley 2013).
– Quantitative Trading: How to Build Your Own Algorithmic Trading Business
(Wiley 2009).
• Blogger: epchan.blogspot.com
About Me
2
Limitations of Financial Data
• Machine learning depends on training data with
stable statistics
– E.g. Facial recognition, speech recognition, playing
GO.
• Financial data is anything but stable.
– Regime changes regularly.
– Anomalies disappearing due to increasing arbitrage
activities.
– In contrast, cats don’t change their faces because
computers start to recognize them on YouTube.
Limitations of Financial Data
• Regime changes render older data unsuitable
for testing new strategies.
– 2001 Decimalization of stock prices.
– 2008 Financial crisis and start of quantitative
easing.
• Only about 2,000 rows of daily data since
2008.
– Google (Le et al, 2012) used 10 million YouTube
videos to train neural network to recognize cats’
faces.
Limitations of Financial Data
• Seasonality further limits size of data sets.
– Options expirations strategies rely on weekly or
monthly data.
– Earnings strategies rely on quarterly data.
– Seasonal physical commodity futures strategies
rely on annual cycles.
Overcoming Data Scarcity
• Use high frequency data
– Arbitrage opportunities depend on time scale.
– Inapplicable to strategies for longer time scales.
– There is seasonality even intraday.
• Aggregate data from multiple instruments
– E.g. run same trading model on all Russell 3,000
stocks.
– 2,000 rows x 3,000 columns = 6 million data
points.
Reducing Overfitting
• Bagging
– Over-sampling existing data to create more rows.
• Random Subspace
– Under-sampling existing predictors to limit
overfitting.
• Stepwise Regression
– Sequentially adding predictors, then sequentially
removing predictors.
• Random Forest
– Combining bagging and random subspace.
Example: Factor Model on SPX Stocks
• Predict quarterly returns on stocks using simple linear
model:
𝑅𝑒𝑡𝑢𝑟𝑛 𝑡 + 1, 𝑠 = α + 𝛽1 𝑡, 𝑠 ∗ 𝐹𝑎𝑐𝑡𝑜𝑟1 +
𝛽2 𝑡, 𝑠 ∗ 𝐹𝑎𝑐𝑡𝑜𝑟2 + ⋯ + ε(t, s)
• Use fundamental factor loadings 𝛽i 𝑡, 𝑠 extracted
from quarterly financial statements as predictors.
• Restrict ourselves to factor loadings that do not scale
with a firm’s size.
– There are about 27 such factor loadings.
– Source: Sharadar’s Core US Fundamentals database via
Quandl.com.
Variable name Explanation Period
CURRENTRATIO Quarterly
DE Debt to Equity Ratio Quarterly
DILUTIONRATIO Share Dilution Ratio Quarterly
PB Price to Book Value Quarterly
TBVPS Tangible Asset Book Value per Share Quarterly
ASSETTURNOVER Trailing 1 Year
EBITDAMARGIN Trailing 1 Year
EPSGROWTH1YR Trailing 1 Year
EQUITYAVG Average Equity Trailing 1 Year
EVEBIT Enterprise Value over EBIT Trailing 1 Year
EVEBITDA Enterprise Value over EBITDA Trailing 1 Year
GROSSMARGIN Trailing 1 Year
INTERESTBURDEN Financial Leverage Trailing 1 Year
LEVERAGERATIO Trailing 1 Year
NCFOGROWTH1YR Trailing 1 Year
NETINCGROWTH1YR Net Income Growth Trailing 1 Year
NETMARGIN Profit Margin Trailing 1 Year
PAYOUTRATIO Trailing 1 Year
PE Price Earnings Damodaran Method Trailing 1 Year
PE1 Trailing 1 Year
PS Trailing 1 Year
PS1 Price Sales Damodaran Method Trailing 1 Year
REVENUEGROWTH1YR Trailing 1 Year
ROA Trailing 1 Year
ROE Trailing 1 Year
ROS Trailing 1 Year
TAXEFFICIENCY Trailing 1 Year
Factor Model on SPX Stocks
• 𝐹𝑎𝑐𝑡𝑜𝑟i are the regression coefficients:
assumed fixed across all stocks and all time.
– Aggregation in action!
– Training data: 200701-201112.
– 1,260x 500 data points (instead of just 1,260).
• Trading strategy: At end of each day
– Buy if predicted return > 0, vice versa for short.
– Hold for a quarter.
Bagging
• Increasing the training set (size N) by over-
sampling data.
– i.e. Resampling with replacement.
• Re-sample N data points to become K bags of
N data points.
– Total: K x N data points.
• Train separate model for each bag.
• Take average predicted returns of K models.
Random Subspace
• Randomly select subset of predictors to train K
models.
• Similar to bagging, take average predicted
returns of K models.
Random Forest
• Combine both bagging and random subspace:
– Over-sample data
– Under-sample* (in our case) predictors
*In other applications such as classification and
regression trees, we can over-sample and re-use
predictors too (i.e. sampling with replacement)
Out-of-Sample Results
CAGR Sharpe Ratio Calmar Ratio
Base model
(aggregated)
14.7% 1.8 2.1
Bagging (K=100) 15.1% 1.8 2.1
Random Forest
(K=100, 14
predictors)
16.7% 1.7 2.1
Interpretation
• Glass half empty:
– Random forest does not improve performance
significantly.
• Glass half full:
– Random forest shows that original performance is
robust with respect to re-sampling.
– I.e. original results are statistically significant!
Stepwise Regression
• Random subspace/forest randomly picking
predictors.
• Stepwise regression picked them step-by-step
based on BIC: essentially maximizing log-
likelihood while penalizing number of
variables.
– BIC is proportional to negative log likelihood.
• Stop adding variables when BIC is minimized,
then start deleting them until BIC increases.
Out-of-Sample Results
CAGR Sharpe Ratio Calmar Ratio
Base model
(aggregated)
14.7% 1.8 2.1
Bagging (K=100) 15.1% 1.8 2.1
Random Forest
(K=100, 14
predictors)
16.7% 1.7 2.1
Stepwise
Regression
19.1% 1.8 2.2
Stepwise Regression
• Just 2 variables generate all the predictive
power of the factor model.
– Gross margin (trailing 1 year)
– Price-to-Sales (trailing 1 year)
• Similar result may be generated by “L1
regularization”?
Market Neutral Version
• Is good return due to a net long exposure
during the bull market?
• Modified trading strategy:
– Buy 50 stocks with the top predicted returns
– Short 50 stocks with the bottom predicted returns
– Hold for 1 quarter.
• Out-of-sample: CAGR=5.54%, Sharpe=1.4,
Calmar=1.4.
• Model has real alpha!
Conclusion
• Aggregating data across time or instruments
usually a good idea.
• Selectively reduction of variables produce
slightly better results than oversampling
training data.
• Reduction of variables produces a more
parsimonious model with more intuitive
meaning.
Thank you for your time!
www.epchan.com
Twitter: @chanep
Blog: epchan.blogspot.com

More Related Content

What's hot

Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016
Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016
Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016
Quantopian
 
The QuantCon Keynote: "Counter Trend Trading – Threat or Complement to Trend ...
The QuantCon Keynote: "Counter Trend Trading – Threat or Complement to Trend ...The QuantCon Keynote: "Counter Trend Trading – Threat or Complement to Trend ...
The QuantCon Keynote: "Counter Trend Trading – Threat or Complement to Trend ...
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
 
"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
 
Statistics - The Missing Link Between Technical Analysis and Algorithmic Trad...
Statistics - The Missing Link Between Technical Analysis and Algorithmic Trad...Statistics - The Missing Link Between Technical Analysis and Algorithmic Trad...
Statistics - The Missing Link Between Technical Analysis and Algorithmic Trad...
Quantopian
 
"Is Momentum Still Relevant for Today’s Markets?" by Anthony Ng, Senior Lecturer
"Is Momentum Still Relevant for Today’s Markets?" by Anthony Ng, Senior Lecturer"Is Momentum Still Relevant for Today’s Markets?" by Anthony Ng, Senior Lecturer
"Is Momentum Still Relevant for Today’s Markets?" by Anthony Ng, Senior Lecturer
Quantopian
 
"A Framework for Developing Trading Models Based on Machine Learning" by Kris...
"A Framework for Developing Trading Models Based on Machine Learning" by Kris..."A Framework for Developing Trading Models Based on Machine Learning" by Kris...
"A Framework for Developing Trading Models Based on Machine Learning" by Kris...
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
 
Quantitative Trading in Eurodollar Futures Market by Edith Mandel at QuantCon...
Quantitative Trading in Eurodollar Futures Market by Edith Mandel at QuantCon...Quantitative Trading in Eurodollar Futures Market by Edith Mandel at QuantCon...
Quantitative Trading in Eurodollar Futures Market by Edith Mandel at QuantCon...
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 Balch
Quantopian
 
"Portfolio Optimisation When You Don’t Know the Future (or the Past)" by Rob...
"Portfolio Optimisation When You Don’t Know the Future (or the Past)" by Rob..."Portfolio Optimisation When You Don’t Know the Future (or the Past)" by Rob...
"Portfolio Optimisation When You Don’t Know the Future (or the Past)" by Rob...
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
 
"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
 
"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
 
Peculiarities of Volatilities by Ernest Chan at QuantCon 2016
Peculiarities of Volatilities by Ernest Chan at QuantCon 2016Peculiarities of Volatilities by Ernest Chan at QuantCon 2016
Peculiarities of Volatilities by Ernest Chan at QuantCon 2016
Quantopian
 
Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...
Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...
Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...
Quantopian
 
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016
Quantopian
 
"Active Learning in Trading Algorithms" by David Fellah, Head of the EMEA Lin...
"Active Learning in Trading Algorithms" by David Fellah, Head of the EMEA Lin..."Active Learning in Trading Algorithms" by David Fellah, Head of the EMEA Lin...
"Active Learning in Trading Algorithms" by David Fellah, Head of the EMEA Lin...
Quantopian
 
What we learned from running a quant crypto hedge fund
What we learned from running a quant crypto hedge fundWhat we learned from running a quant crypto hedge fund
What we learned from running a quant crypto hedge fund
Yingdan (Mora) Liang
 
Volatility Trading - Hedge Fund Strategies
Volatility Trading - Hedge Fund StrategiesVolatility Trading - Hedge Fund Strategies
Volatility Trading - Hedge Fund Strategies
Hedge Fund South Africa
 

What's hot (20)

Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016
Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016
Market Timing, Big Data, and Machine Learning by Xiao Qiao at QuantCon 2016
 
The QuantCon Keynote: "Counter Trend Trading – Threat or Complement to Trend ...
The QuantCon Keynote: "Counter Trend Trading – Threat or Complement to Trend ...The QuantCon Keynote: "Counter Trend Trading – Threat or Complement to Trend ...
The QuantCon Keynote: "Counter Trend Trading – Threat or Complement to Trend ...
 
"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...
 
"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...
 
Statistics - The Missing Link Between Technical Analysis and Algorithmic Trad...
Statistics - The Missing Link Between Technical Analysis and Algorithmic Trad...Statistics - The Missing Link Between Technical Analysis and Algorithmic Trad...
Statistics - The Missing Link Between Technical Analysis and Algorithmic Trad...
 
"Is Momentum Still Relevant for Today’s Markets?" by Anthony Ng, Senior Lecturer
"Is Momentum Still Relevant for Today’s Markets?" by Anthony Ng, Senior Lecturer"Is Momentum Still Relevant for Today’s Markets?" by Anthony Ng, Senior Lecturer
"Is Momentum Still Relevant for Today’s Markets?" by Anthony Ng, Senior Lecturer
 
"A Framework for Developing Trading Models Based on Machine Learning" by Kris...
"A Framework for Developing Trading Models Based on Machine Learning" by Kris..."A Framework for Developing Trading Models Based on Machine Learning" by Kris...
"A Framework for Developing Trading Models Based on Machine Learning" by Kris...
 
"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 ...
 
Quantitative Trading in Eurodollar Futures Market by Edith Mandel at QuantCon...
Quantitative Trading in Eurodollar Futures Market by Edith Mandel at QuantCon...Quantitative Trading in Eurodollar Futures Market by Edith Mandel at QuantCon...
Quantitative Trading in Eurodollar Futures Market by Edith Mandel at QuantCon...
 
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
 
"Portfolio Optimisation When You Don’t Know the Future (or the Past)" by Rob...
"Portfolio Optimisation When You Don’t Know the Future (or the Past)" by Rob..."Portfolio Optimisation When You Don’t Know the Future (or the Past)" by Rob...
"Portfolio Optimisation When You Don’t Know the Future (or the Past)" by Rob...
 
"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...
 
"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...
 
"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 ...
 
Peculiarities of Volatilities by Ernest Chan at QuantCon 2016
Peculiarities of Volatilities by Ernest Chan at QuantCon 2016Peculiarities of Volatilities by Ernest Chan at QuantCon 2016
Peculiarities of Volatilities by Ernest Chan at QuantCon 2016
 
Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...
Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...
Beware of Low Frequency Data by Ernie Chan, Managing Member, QTS Capital Mana...
 
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016
A Guided Tour of Machine Learning for Traders by Tucker Balch at QuantCon 2016
 
"Active Learning in Trading Algorithms" by David Fellah, Head of the EMEA Lin...
"Active Learning in Trading Algorithms" by David Fellah, Head of the EMEA Lin..."Active Learning in Trading Algorithms" by David Fellah, Head of the EMEA Lin...
"Active Learning in Trading Algorithms" by David Fellah, Head of the EMEA Lin...
 
What we learned from running a quant crypto hedge fund
What we learned from running a quant crypto hedge fundWhat we learned from running a quant crypto hedge fund
What we learned from running a quant crypto hedge fund
 
Volatility Trading - Hedge Fund Strategies
Volatility Trading - Hedge Fund StrategiesVolatility Trading - Hedge Fund Strategies
Volatility Trading - Hedge Fund Strategies
 

Similar to "Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managing Member of QTS Capital Management, LLC.

RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...
RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...
RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...
Kei Nakagawa
 
A Robust Transferable Deep Learning Framework for Cross-sectional Investment ...
A Robust Transferable Deep Learning Framework for Cross-sectional Investment ...A Robust Transferable Deep Learning Framework for Cross-sectional Investment ...
A Robust Transferable Deep Learning Framework for Cross-sectional Investment ...
Kei Nakagawa
 
1440 track3 galusha
1440 track3 galusha1440 track3 galusha
1440 track3 galusha
Rising Media, Inc.
 
Causal reasoning and Learning Systems
Causal reasoning and Learning SystemsCausal reasoning and Learning Systems
Causal reasoning and Learning Systems
Trieu Nguyen
 
"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
 
CAPM and APT-7.pptx
CAPM and APT-7.pptxCAPM and APT-7.pptx
CAPM and APT-7.pptx
DhruvinSakariya
 
1030 track1 heiler
1030 track1 heiler1030 track1 heiler
1030 track1 heiler
Rising Media, Inc.
 
Mykola Herasymovych: Optimizing Acceptance Threshold in Credit Scoring using ...
Mykola Herasymovych: Optimizing Acceptance Threshold in Credit Scoring using ...Mykola Herasymovych: Optimizing Acceptance Threshold in Credit Scoring using ...
Mykola Herasymovych: Optimizing Acceptance Threshold in Credit Scoring using ...
Eesti Pank
 
Company analysis applied valuation
Company analysis  applied valuationCompany analysis  applied valuation
Company analysis applied valuation
Charles Andrade
 
Performance OR Capacity #CMGimPACt2016
Performance OR Capacity #CMGimPACt2016 Performance OR Capacity #CMGimPACt2016
Performance OR Capacity #CMGimPACt2016
Alex Gilgur
 
1030 track 3 rolleston_using our laptop
1030 track 3 rolleston_using our laptop1030 track 3 rolleston_using our laptop
1030 track 3 rolleston_using our laptop
Rising Media, Inc.
 
Foundations of Machine Learning - StampedeCon AI Summit 2017
Foundations of Machine Learning - StampedeCon AI Summit 2017Foundations of Machine Learning - StampedeCon AI Summit 2017
Foundations of Machine Learning - StampedeCon AI Summit 2017
StampedeCon
 
3.3 Forecasting Part 2(1) (1).pptx
3.3 Forecasting Part 2(1) (1).pptx3.3 Forecasting Part 2(1) (1).pptx
3.3 Forecasting Part 2(1) (1).pptx
MBALOGISTICSSUPPLYCH
 
Stochastic Modeling - Financial Reporting
Stochastic Modeling - Financial ReportingStochastic Modeling - Financial Reporting
Stochastic Modeling - Financial ReportingRon Harasym
 
Chapter 16
Chapter 16Chapter 16
Chapter 16bmcfad01
 
Choosing The Right Credit Decisioning Model
Choosing The Right Credit Decisioning ModelChoosing The Right Credit Decisioning Model
Choosing The Right Credit Decisioning Model
Experian
 
A high level overview of all that is Analytics
A high level overview of all that is AnalyticsA high level overview of all that is Analytics
A high level overview of all that is Analytics
Ramkumar Ravichandran
 
need to realize in r studio (regression).pptx
need to realize in r studio (regression).pptxneed to realize in r studio (regression).pptx
need to realize in r studio (regression).pptx
SmarajitPaulChoudhur
 
Es 08 forecasting topic final
Es 08 forecasting topic finalEs 08 forecasting topic final
Es 08 forecasting topic final
Tim Arroyo
 

Similar to "Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managing Member of QTS Capital Management, LLC. (20)

RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...
RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...
RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...
 
A Robust Transferable Deep Learning Framework for Cross-sectional Investment ...
A Robust Transferable Deep Learning Framework for Cross-sectional Investment ...A Robust Transferable Deep Learning Framework for Cross-sectional Investment ...
A Robust Transferable Deep Learning Framework for Cross-sectional Investment ...
 
1440 track3 galusha
1440 track3 galusha1440 track3 galusha
1440 track3 galusha
 
Causal reasoning and Learning Systems
Causal reasoning and Learning SystemsCausal reasoning and Learning Systems
Causal reasoning and Learning Systems
 
"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...
 
CAPM and APT-7.pptx
CAPM and APT-7.pptxCAPM and APT-7.pptx
CAPM and APT-7.pptx
 
1030 track1 heiler
1030 track1 heiler1030 track1 heiler
1030 track1 heiler
 
Mykola Herasymovych: Optimizing Acceptance Threshold in Credit Scoring using ...
Mykola Herasymovych: Optimizing Acceptance Threshold in Credit Scoring using ...Mykola Herasymovych: Optimizing Acceptance Threshold in Credit Scoring using ...
Mykola Herasymovych: Optimizing Acceptance Threshold in Credit Scoring using ...
 
Company analysis applied valuation
Company analysis  applied valuationCompany analysis  applied valuation
Company analysis applied valuation
 
Forecasting
ForecastingForecasting
Forecasting
 
Performance OR Capacity #CMGimPACt2016
Performance OR Capacity #CMGimPACt2016 Performance OR Capacity #CMGimPACt2016
Performance OR Capacity #CMGimPACt2016
 
1030 track 3 rolleston_using our laptop
1030 track 3 rolleston_using our laptop1030 track 3 rolleston_using our laptop
1030 track 3 rolleston_using our laptop
 
Foundations of Machine Learning - StampedeCon AI Summit 2017
Foundations of Machine Learning - StampedeCon AI Summit 2017Foundations of Machine Learning - StampedeCon AI Summit 2017
Foundations of Machine Learning - StampedeCon AI Summit 2017
 
3.3 Forecasting Part 2(1) (1).pptx
3.3 Forecasting Part 2(1) (1).pptx3.3 Forecasting Part 2(1) (1).pptx
3.3 Forecasting Part 2(1) (1).pptx
 
Stochastic Modeling - Financial Reporting
Stochastic Modeling - Financial ReportingStochastic Modeling - Financial Reporting
Stochastic Modeling - Financial Reporting
 
Chapter 16
Chapter 16Chapter 16
Chapter 16
 
Choosing The Right Credit Decisioning Model
Choosing The Right Credit Decisioning ModelChoosing The Right Credit Decisioning Model
Choosing The Right Credit Decisioning Model
 
A high level overview of all that is Analytics
A high level overview of all that is AnalyticsA high level overview of all that is Analytics
A high level overview of all that is Analytics
 
need to realize in r studio (regression).pptx
need to realize in r studio (regression).pptxneed to realize in r studio (regression).pptx
need to realize in r studio (regression).pptx
 
Es 08 forecasting topic final
Es 08 forecasting topic finalEs 08 forecasting topic final
Es 08 forecasting topic final
 

More from Quantopian

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
 
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018Stauth common pitfalls_stock_market_modeling_pqtc_fall2018
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018
Quantopian
 
Tearsheet feedback webinar 10.10.18
Tearsheet feedback webinar 10.10.18Tearsheet feedback webinar 10.10.18
Tearsheet feedback webinar 10.10.18
Quantopian
 
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,..."Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...
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 Alpha
Quantopian
 
"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
 
"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
 
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes..."Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...
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
 
"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
 
"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
 
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr..."Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...
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 (19)

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.
 
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018Stauth common pitfalls_stock_market_modeling_pqtc_fall2018
Stauth common pitfalls_stock_market_modeling_pqtc_fall2018
 
Tearsheet feedback webinar 10.10.18
Tearsheet feedback webinar 10.10.18Tearsheet feedback webinar 10.10.18
Tearsheet feedback webinar 10.10.18
 
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,..."Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...
"Three Dimensional Time: Working with Alternative Data" by Kathryn Glowinski,...
 
"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 ...
 
"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...
 
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes..."Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...
"Making the Grade: A Look Inside the Algorithm Evaluation Process" by Dr. Jes...
 
"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...
 
"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 ...
 
"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...
 
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr..."Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...
"Bayesian Deep Learning: Dealing with Uncertainty and Non-Stationarity" by Dr...
 
"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

一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
bbeucd
 
Abhay Bhutada Leads Poonawalla Fincorp To Record Low NPA And Unprecedented Gr...
Abhay Bhutada Leads Poonawalla Fincorp To Record Low NPA And Unprecedented Gr...Abhay Bhutada Leads Poonawalla Fincorp To Record Low NPA And Unprecedented Gr...
Abhay Bhutada Leads Poonawalla Fincorp To Record Low NPA And Unprecedented Gr...
Vighnesh Shashtri
 
APP I Lecture Notes to students 0f 4the year
APP I  Lecture Notes  to students 0f 4the yearAPP I  Lecture Notes  to students 0f 4the year
APP I Lecture Notes to students 0f 4the year
telilaalilemlem
 
The European Unemployment Puzzle: implications from population aging
The European Unemployment Puzzle: implications from population agingThe European Unemployment Puzzle: implications from population aging
The European Unemployment Puzzle: implications from population aging
GRAPE
 
Role of Information Technology in Revenue - Prof Oyedokun.pptx
Role of Information Technology in Revenue  - Prof Oyedokun.pptxRole of Information Technology in Revenue  - Prof Oyedokun.pptx
Role of Information Technology in Revenue - Prof Oyedokun.pptx
Godwin Emmanuel Oyedokun MBA MSc PhD FCA FCTI FCNA CFE FFAR
 
The WhatsPump Pseudonym Problem and the Hilarious Downfall of Artificial Enga...
The WhatsPump Pseudonym Problem and the Hilarious Downfall of Artificial Enga...The WhatsPump Pseudonym Problem and the Hilarious Downfall of Artificial Enga...
The WhatsPump Pseudonym Problem and the Hilarious Downfall of Artificial Enga...
muslimdavidovich670
 
1. Elemental Economics - Introduction to mining.pdf
1. Elemental Economics - Introduction to mining.pdf1. Elemental Economics - Introduction to mining.pdf
1. Elemental Economics - Introduction to mining.pdf
Neal Brewster
 
Eco-Innovations and Firm Heterogeneity. Evidence from Italian Family and Nonf...
Eco-Innovations and Firm Heterogeneity.Evidence from Italian Family and Nonf...Eco-Innovations and Firm Heterogeneity.Evidence from Italian Family and Nonf...
Eco-Innovations and Firm Heterogeneity. Evidence from Italian Family and Nonf...
University of Calabria
 
when will pi network coin be available on crypto exchange.
when will pi network coin be available on crypto exchange.when will pi network coin be available on crypto exchange.
when will pi network coin be available on crypto exchange.
DOT TECH
 
The Role of Non-Banking Financial Companies (NBFCs)
The Role of Non-Banking Financial Companies (NBFCs)The Role of Non-Banking Financial Companies (NBFCs)
The Role of Non-Banking Financial Companies (NBFCs)
nickysharmasucks
 
2. Elemental Economics - Mineral demand.pdf
2. Elemental Economics - Mineral demand.pdf2. Elemental Economics - Mineral demand.pdf
2. Elemental Economics - Mineral demand.pdf
Neal Brewster
 
一比一原版(IC毕业证)帝国理工大学毕业证如何办理
一比一原版(IC毕业证)帝国理工大学毕业证如何办理一比一原版(IC毕业证)帝国理工大学毕业证如何办理
一比一原版(IC毕业证)帝国理工大学毕业证如何办理
conose1
 
This assessment plan proposal is to outline a structured approach to evaluati...
This assessment plan proposal is to outline a structured approach to evaluati...This assessment plan proposal is to outline a structured approach to evaluati...
This assessment plan proposal is to outline a structured approach to evaluati...
lamluanvan.net Viết thuê luận văn
 
SWAIAP Fraud Risk Mitigation Prof Oyedokun.pptx
SWAIAP Fraud Risk Mitigation   Prof Oyedokun.pptxSWAIAP Fraud Risk Mitigation   Prof Oyedokun.pptx
SWAIAP Fraud Risk Mitigation Prof Oyedokun.pptx
Godwin Emmanuel Oyedokun MBA MSc PhD FCA FCTI FCNA CFE FFAR
 
Donald Trump Presentation and his life.pptx
Donald Trump Presentation and his life.pptxDonald Trump Presentation and his life.pptx
Donald Trump Presentation and his life.pptx
SerdarHudaykuliyew
 
How to get verified on Coinbase Account?_.docx
How to get verified on Coinbase Account?_.docxHow to get verified on Coinbase Account?_.docx
How to get verified on Coinbase Account?_.docx
Buy bitget
 
The secret way to sell pi coins effortlessly.
The secret way to sell pi coins effortlessly.The secret way to sell pi coins effortlessly.
The secret way to sell pi coins effortlessly.
DOT TECH
 
Analyzing the instability of equilibrium in thr harrod domar model
Analyzing the instability of equilibrium in thr harrod domar modelAnalyzing the instability of equilibrium in thr harrod domar model
Analyzing the instability of equilibrium in thr harrod domar model
ManthanBhardwaj4
 
US Economic Outlook - Being Decided - M Capital Group August 2021.pdf
US Economic Outlook - Being Decided - M Capital Group August 2021.pdfUS Economic Outlook - Being Decided - M Capital Group August 2021.pdf
US Economic Outlook - Being Decided - M Capital Group August 2021.pdf
pchutichetpong
 
Instant Issue Debit Cards
Instant Issue Debit CardsInstant Issue Debit Cards
Instant Issue Debit Cards
egoetzinger
 

Recently uploaded (20)

一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
 
Abhay Bhutada Leads Poonawalla Fincorp To Record Low NPA And Unprecedented Gr...
Abhay Bhutada Leads Poonawalla Fincorp To Record Low NPA And Unprecedented Gr...Abhay Bhutada Leads Poonawalla Fincorp To Record Low NPA And Unprecedented Gr...
Abhay Bhutada Leads Poonawalla Fincorp To Record Low NPA And Unprecedented Gr...
 
APP I Lecture Notes to students 0f 4the year
APP I  Lecture Notes  to students 0f 4the yearAPP I  Lecture Notes  to students 0f 4the year
APP I Lecture Notes to students 0f 4the year
 
The European Unemployment Puzzle: implications from population aging
The European Unemployment Puzzle: implications from population agingThe European Unemployment Puzzle: implications from population aging
The European Unemployment Puzzle: implications from population aging
 
Role of Information Technology in Revenue - Prof Oyedokun.pptx
Role of Information Technology in Revenue  - Prof Oyedokun.pptxRole of Information Technology in Revenue  - Prof Oyedokun.pptx
Role of Information Technology in Revenue - Prof Oyedokun.pptx
 
The WhatsPump Pseudonym Problem and the Hilarious Downfall of Artificial Enga...
The WhatsPump Pseudonym Problem and the Hilarious Downfall of Artificial Enga...The WhatsPump Pseudonym Problem and the Hilarious Downfall of Artificial Enga...
The WhatsPump Pseudonym Problem and the Hilarious Downfall of Artificial Enga...
 
1. Elemental Economics - Introduction to mining.pdf
1. Elemental Economics - Introduction to mining.pdf1. Elemental Economics - Introduction to mining.pdf
1. Elemental Economics - Introduction to mining.pdf
 
Eco-Innovations and Firm Heterogeneity. Evidence from Italian Family and Nonf...
Eco-Innovations and Firm Heterogeneity.Evidence from Italian Family and Nonf...Eco-Innovations and Firm Heterogeneity.Evidence from Italian Family and Nonf...
Eco-Innovations and Firm Heterogeneity. Evidence from Italian Family and Nonf...
 
when will pi network coin be available on crypto exchange.
when will pi network coin be available on crypto exchange.when will pi network coin be available on crypto exchange.
when will pi network coin be available on crypto exchange.
 
The Role of Non-Banking Financial Companies (NBFCs)
The Role of Non-Banking Financial Companies (NBFCs)The Role of Non-Banking Financial Companies (NBFCs)
The Role of Non-Banking Financial Companies (NBFCs)
 
2. Elemental Economics - Mineral demand.pdf
2. Elemental Economics - Mineral demand.pdf2. Elemental Economics - Mineral demand.pdf
2. Elemental Economics - Mineral demand.pdf
 
一比一原版(IC毕业证)帝国理工大学毕业证如何办理
一比一原版(IC毕业证)帝国理工大学毕业证如何办理一比一原版(IC毕业证)帝国理工大学毕业证如何办理
一比一原版(IC毕业证)帝国理工大学毕业证如何办理
 
This assessment plan proposal is to outline a structured approach to evaluati...
This assessment plan proposal is to outline a structured approach to evaluati...This assessment plan proposal is to outline a structured approach to evaluati...
This assessment plan proposal is to outline a structured approach to evaluati...
 
SWAIAP Fraud Risk Mitigation Prof Oyedokun.pptx
SWAIAP Fraud Risk Mitigation   Prof Oyedokun.pptxSWAIAP Fraud Risk Mitigation   Prof Oyedokun.pptx
SWAIAP Fraud Risk Mitigation Prof Oyedokun.pptx
 
Donald Trump Presentation and his life.pptx
Donald Trump Presentation and his life.pptxDonald Trump Presentation and his life.pptx
Donald Trump Presentation and his life.pptx
 
How to get verified on Coinbase Account?_.docx
How to get verified on Coinbase Account?_.docxHow to get verified on Coinbase Account?_.docx
How to get verified on Coinbase Account?_.docx
 
The secret way to sell pi coins effortlessly.
The secret way to sell pi coins effortlessly.The secret way to sell pi coins effortlessly.
The secret way to sell pi coins effortlessly.
 
Analyzing the instability of equilibrium in thr harrod domar model
Analyzing the instability of equilibrium in thr harrod domar modelAnalyzing the instability of equilibrium in thr harrod domar model
Analyzing the instability of equilibrium in thr harrod domar model
 
US Economic Outlook - Being Decided - M Capital Group August 2021.pdf
US Economic Outlook - Being Decided - M Capital Group August 2021.pdfUS Economic Outlook - Being Decided - M Capital Group August 2021.pdf
US Economic Outlook - Being Decided - M Capital Group August 2021.pdf
 
Instant Issue Debit Cards
Instant Issue Debit CardsInstant Issue Debit Cards
Instant Issue Debit Cards
 

"Enhancing Statistical Significance of Backtests" by Dr. Ernest Chan, Managing Member of QTS Capital Management, LLC.

  • 1. Enhancing Statistical Significance of Backtests Ernie Chan, Ph.D. QTS Capital Management, LLC.
  • 2. • Previously, researcher at IBM T. J. Watson Lab in machine learning, researcher/trader for Morgan Stanley, Credit Suisse, and various hedge funds. • Managing Member of QTS Capital Management, LLC., a commodity pool operator and trading advisor. • Author: – Machine Trading: Deploying Computer Algorithms to Conquer the Markets (Wiley 2017). – Algorithmic Trading: Winning Strategies and Their Rationale (Wiley 2013). – Quantitative Trading: How to Build Your Own Algorithmic Trading Business (Wiley 2009). • Blogger: epchan.blogspot.com About Me 2
  • 3. Limitations of Financial Data • Machine learning depends on training data with stable statistics – E.g. Facial recognition, speech recognition, playing GO. • Financial data is anything but stable. – Regime changes regularly. – Anomalies disappearing due to increasing arbitrage activities. – In contrast, cats don’t change their faces because computers start to recognize them on YouTube.
  • 4. Limitations of Financial Data • Regime changes render older data unsuitable for testing new strategies. – 2001 Decimalization of stock prices. – 2008 Financial crisis and start of quantitative easing. • Only about 2,000 rows of daily data since 2008. – Google (Le et al, 2012) used 10 million YouTube videos to train neural network to recognize cats’ faces.
  • 5. Limitations of Financial Data • Seasonality further limits size of data sets. – Options expirations strategies rely on weekly or monthly data. – Earnings strategies rely on quarterly data. – Seasonal physical commodity futures strategies rely on annual cycles.
  • 6. Overcoming Data Scarcity • Use high frequency data – Arbitrage opportunities depend on time scale. – Inapplicable to strategies for longer time scales. – There is seasonality even intraday. • Aggregate data from multiple instruments – E.g. run same trading model on all Russell 3,000 stocks. – 2,000 rows x 3,000 columns = 6 million data points.
  • 7. Reducing Overfitting • Bagging – Over-sampling existing data to create more rows. • Random Subspace – Under-sampling existing predictors to limit overfitting. • Stepwise Regression – Sequentially adding predictors, then sequentially removing predictors. • Random Forest – Combining bagging and random subspace.
  • 8. Example: Factor Model on SPX Stocks • Predict quarterly returns on stocks using simple linear model: 𝑅𝑒𝑡𝑢𝑟𝑛 𝑡 + 1, 𝑠 = α + 𝛽1 𝑡, 𝑠 ∗ 𝐹𝑎𝑐𝑡𝑜𝑟1 + 𝛽2 𝑡, 𝑠 ∗ 𝐹𝑎𝑐𝑡𝑜𝑟2 + ⋯ + ε(t, s) • Use fundamental factor loadings 𝛽i 𝑡, 𝑠 extracted from quarterly financial statements as predictors. • Restrict ourselves to factor loadings that do not scale with a firm’s size. – There are about 27 such factor loadings. – Source: Sharadar’s Core US Fundamentals database via Quandl.com.
  • 9. Variable name Explanation Period CURRENTRATIO Quarterly DE Debt to Equity Ratio Quarterly DILUTIONRATIO Share Dilution Ratio Quarterly PB Price to Book Value Quarterly TBVPS Tangible Asset Book Value per Share Quarterly ASSETTURNOVER Trailing 1 Year EBITDAMARGIN Trailing 1 Year EPSGROWTH1YR Trailing 1 Year EQUITYAVG Average Equity Trailing 1 Year EVEBIT Enterprise Value over EBIT Trailing 1 Year EVEBITDA Enterprise Value over EBITDA Trailing 1 Year GROSSMARGIN Trailing 1 Year INTERESTBURDEN Financial Leverage Trailing 1 Year LEVERAGERATIO Trailing 1 Year NCFOGROWTH1YR Trailing 1 Year NETINCGROWTH1YR Net Income Growth Trailing 1 Year NETMARGIN Profit Margin Trailing 1 Year PAYOUTRATIO Trailing 1 Year PE Price Earnings Damodaran Method Trailing 1 Year PE1 Trailing 1 Year PS Trailing 1 Year PS1 Price Sales Damodaran Method Trailing 1 Year REVENUEGROWTH1YR Trailing 1 Year ROA Trailing 1 Year ROE Trailing 1 Year ROS Trailing 1 Year TAXEFFICIENCY Trailing 1 Year
  • 10. Factor Model on SPX Stocks • 𝐹𝑎𝑐𝑡𝑜𝑟i are the regression coefficients: assumed fixed across all stocks and all time. – Aggregation in action! – Training data: 200701-201112. – 1,260x 500 data points (instead of just 1,260). • Trading strategy: At end of each day – Buy if predicted return > 0, vice versa for short. – Hold for a quarter.
  • 11.
  • 12. Bagging • Increasing the training set (size N) by over- sampling data. – i.e. Resampling with replacement. • Re-sample N data points to become K bags of N data points. – Total: K x N data points. • Train separate model for each bag. • Take average predicted returns of K models.
  • 13.
  • 14. Random Subspace • Randomly select subset of predictors to train K models. • Similar to bagging, take average predicted returns of K models.
  • 15. Random Forest • Combine both bagging and random subspace: – Over-sample data – Under-sample* (in our case) predictors *In other applications such as classification and regression trees, we can over-sample and re-use predictors too (i.e. sampling with replacement)
  • 16. Out-of-Sample Results CAGR Sharpe Ratio Calmar Ratio Base model (aggregated) 14.7% 1.8 2.1 Bagging (K=100) 15.1% 1.8 2.1 Random Forest (K=100, 14 predictors) 16.7% 1.7 2.1
  • 17. Interpretation • Glass half empty: – Random forest does not improve performance significantly. • Glass half full: – Random forest shows that original performance is robust with respect to re-sampling. – I.e. original results are statistically significant!
  • 18. Stepwise Regression • Random subspace/forest randomly picking predictors. • Stepwise regression picked them step-by-step based on BIC: essentially maximizing log- likelihood while penalizing number of variables. – BIC is proportional to negative log likelihood. • Stop adding variables when BIC is minimized, then start deleting them until BIC increases.
  • 19. Out-of-Sample Results CAGR Sharpe Ratio Calmar Ratio Base model (aggregated) 14.7% 1.8 2.1 Bagging (K=100) 15.1% 1.8 2.1 Random Forest (K=100, 14 predictors) 16.7% 1.7 2.1 Stepwise Regression 19.1% 1.8 2.2
  • 20. Stepwise Regression • Just 2 variables generate all the predictive power of the factor model. – Gross margin (trailing 1 year) – Price-to-Sales (trailing 1 year) • Similar result may be generated by “L1 regularization”?
  • 21. Market Neutral Version • Is good return due to a net long exposure during the bull market? • Modified trading strategy: – Buy 50 stocks with the top predicted returns – Short 50 stocks with the bottom predicted returns – Hold for 1 quarter. • Out-of-sample: CAGR=5.54%, Sharpe=1.4, Calmar=1.4. • Model has real alpha!
  • 22. Conclusion • Aggregating data across time or instruments usually a good idea. • Selectively reduction of variables produce slightly better results than oversampling training data. • Reduction of variables produces a more parsimonious model with more intuitive meaning.
  • 23. Thank you for your time! www.epchan.com Twitter: @chanep Blog: epchan.blogspot.com

Editor's Notes

  1. Le et al, 2012. http://static.googleusercontent.com/media/research.google.com/en//archive/unsupervised_icml2012.pdf