SlideShare a Scribd company logo
Trading Strategies
That Are Designed Not
Fitted
Robert Carver
QuantCon 2017 / New York / 29th
April 2017
Legal boilerplate bit:
Nothing in this presentation constitutes investment advice, or
an offer or solicitation to conduct investment business. The
material here is solely for educational purposes.
Robert Carver is not currently regulated or authorised by the
FCA, SEC, CFTC, or any other regulatory body to give
investment advice, or indeed to do anything else.
Futures trading carries significant risks and is not suitable for
all investors. Back tested and actual historic results are no
guarantee of future performance. Use of the material in this
presentation is entirely at your own risk.
My 27 year old self
How my 27 year old self thought
systematic trading design should work...
Data
Magic box
Trading strategy
Algo + Parameters
Data first
Why is fitting bad….
"The elements of statistical learning" by Hastie et al fig 2.11
The three types of fitting...
Explicit
Implicit
Tacit
Tacit financial market knowledge
Theory
Common sense
Theory
Market folkore
Previous research
How do we design rather than fit?
➢ Acknowledge and embrace tacit knowledge
➢ Avoid implicit fitting
➢ Do the minimum amount of explicit fitting, and do it
right.
Start with ideas not data
How my ~43 year old self designs
trading strategies...
Tactit knowledge
Design process
Trading strategy
Algo + Parameters
Ideas first
Real
Data
Fake data
How my ~43 year old self designs
trading strategies...
Theory
Design process
Common sense
Market folkore
Previous research
Real
Data
Fake data
How do people design real products...
Theory
Design process
Personal taste
Market research
Previous products
Focus group
Prototypes
Tacit knowledge: Trend following
● Market folklore:
● “Cut your losers and let your winners run”
● “Don’t fight the tape”
● Turtle Traders
● US CTA tradition (Campbell, Chesapeake, Dunn), UK CTA
tradition (AHL, Winton, Aspect), Europeans (Transtrend,
Systematica)
● Previous empirical research:
● Levy 1960
● Jegadeesh and Titman 1993
● Carhart “fourth factor” 1997
● Theory:
● Prospect theory (Kahneman and Tversky 1992),
● Herding, Confirmation bias, under reaction.
● Behaviour of other participants (eg risk parity funds)
Unanswered questions
● What period of time do trends last for?
● When should we enter trends?
● When should we exit trends?
● Should we have a stop loss rule? What is it?
● How do we identify markets that are, or aren’t “trend friendly”?
● How do we identify how strong the trend is?
● What size should our positions be?
● What is our algo?
● What are it’s parameters?
Data first
Data
Magic box
Strategy = Best Algo +
Best parameters
Possible algos
Possible parameters
What is best strategy? Data first answer:
Best return versus risk in dataset
Assuming leverage is possible and risk is
Gaussian:
Highest Sharpe Ratio
(Other measures are available…)
Single metric of ‘best’: Performance
Single source of information: Past data
What is best strategy? Ideas first answer:
Best designed strategy
Multi-faceted metrics:
Performance, turnover, behaviour in given
scenarios...
Multi-faceted sources of information:
Common sense, Theoretical principles, Fake
data, (Limited amounts of) Real Data
Designing a trading strategy – 6 steps:
● Start with a sound framework which imposes some
conditions
● Come up with the idea
● Use some random data or single scenario of real data
plus theory / common sense to develop algo
● Use fake data to “fit” algo
● Real data for parameter sensitivity check / sense check
● Fit allocation using real data (out of sample, robust
optimisation)
Designing a trading strategy – 6 steps:
● Start with a sound framework which imposes some
conditions
● Come up with the idea
● Use some random data or single scenario of real data
plus theory / common sense to develop algo
● Use fake data to “fit” algo
● Real data for parameter sensitivity check / sense check
● Fit allocation using real data (out of sample, robust
optimisation)
Start with a sound framework
Trading rule 1 Trading rule 2 Trading rule 3
SP500 EDOLLAR CORN
Combine forecasts from trading rules
Position sizing
Portfolio: Weight instrument positions
Risk targeting
Start with a sound framework: Conditions
● Trading rules make forecasts of risk adjusted price changes
● Forecasts are continous, not discrete entry + exit conditions
● Forecasts are scaled in an instrument / temporal independent
way (no “magic numbers”)
● Forecast is proportional to E(Sharpe Ratio  / )
[Position is proportional to Forecast / hence position is
proportional to  / 

● E(abs(forecast)) = 10.0
● In principal all forecasts used on all markets (portfolio
optimisation stage will become later)
● Use multiple variations of the same trading rule to capture
different time frames (as many as possible, not too highly
correlated)
● Costs are the most important thing. The second most
important thing is costs. Costs are predictable – returns are
not. Throw away very expensive systems.
● Throw away very slow systems (LAM)
Start with a sound framework
… remember these questions?
● What period of time do trends last for?
● When should we enter trends?
● When should we exit trends?
● Should we have a stop loss rule? What is it?
● How do we identify markets that are, or aren’t “trend
friendly”?
● How do we identify how strong the trend is?
● What size should our positions be?
Start with a sound framework
… remember these questions?
● What period of time do trends last for?
● When should we enter trends?
● When should we exit trends?
● Should we have a stop loss rule? What is it?
● How do we identify markets that are, or aren’t “trend
friendly”?
● How do we identify how strong the trend is?
● What size should our positions be?
Fewer open questions:
Fewer parameters to “fit” or design
Designing a trading strategy – 6 steps:
● Start with a sound framework which imposes some
conditions
● Come up with the idea
● Use some random data or single scenario of real data
plus theory / common sense to develop algo
● Use fake data to “fit” algo
● Real data for parameter sensitivity check / sense check
● Fit allocation using real data (out of sample, robust
optimisation)
Come up with the idea: What are trends?
Come up with the idea
Linear regression price against time, using Ordinary Least
Squares:
y =  + x + minimise 
with y = price, and x = some measure of time (eg years)
price in uptrend
price in downtrend
We use a rolling regression over the last N weekdays to
capture different length trends.
Single parameter: window_size
Designing a trading strategy – 6 steps:
● Start with a sound framework which imposes some
conditions
● Come up with the idea
● Use some random data or single scenario of real data
plus theory / common sense to develop algo
● Use fake data to “fit” algo
● Real data for parameter sensitivity check / sense check
● Fit allocation using real data (out of sample, robust
optimisation)
Develop algo: Real scenario… 2008
 = -564.1 points/year
Conditions (reminder)
● Trading rules make forecasts of risk adjusted price changes
● Forecasts are continous, not discrete entry + exit conditions
● Forecasts are scaled in an instrument / temporal
independent way (no “magic numbers”)
● Forecast is proportional to E(Sharpe Ratio  / )
[Position is proportional to Forecast / hence position is
proportional to  / 

● E(abs(forecast)) = 10.0
● In principal all forecasts used on all markets (portfolio
optimisation stage will become later)
● Use multiple variations of the same trading rule to capture
different time frames (as many as possible, not too highly
correlated)
● Costs are the most important thing. The second most
important thing is costs. Costs are predictable – returns are
not. Throw away very expensive systems.
● Throw away very slow systems (LAM)
Develop algo: Evaluate design
Does this scale well? No…
(No need to look at data! Common sense!)
Forecast is proportional to E(Sharpe Ratio =  / )
[Position is proportional to Forecast / hence position is
proportional to  / 

in units of (price) so:
Forecast = 
Where is measured is annual standard deviation of (price)
(No need to look at data! Theory)
Develop algo: 2nd
iteration
Develop algo: Evaluate design
Does this scale well? Yes.
Does behaviour make sense? Yes.
Bullish in bull markets, bearish in bear markets
How about the trading speed? Seems reasonable given the
length of trends involved
Anything weird? Yes
Need to set initial min_periods to a higher value (eg
window_size / 4 : Common sense!)
Too slow? Probably N=256 is the slowest we’d go (LAM)
Designing a trading strategy – 6 steps:
● Start with a sound framework which imposes some
conditions
● Come up with the idea
● Use some random data or single scenario of real data
plus theory / common sense to develop algo
● Use fake data to “fit” algo
● Real data for parameter sensitivity check / sense check
● Fit allocation using real data (out of sample, robust
optimisation)
Conditions (reminder)
● Trading rules make forecasts of risk adjusted price changes
● Forecasts are continous, not discrete entry + exit conditions
● Forecasts are scaled in an instrument / temporal independent
way (no “magic numbers”)
● Forecast is proportional to E(Sharpe Ratio  / )
[Position is proportional to Forecast / hence position is
proportional to  / 

● E(abs(forecast)) = 10.0
● In principal all forecasts used on all markets (portfolio
optimisation stage will become later)
● Use multiple variations of the same trading rule to capture
different time frames (as many as possible, not too highly
correlated)
● Costs are the most important thing. The second most
important thing is costs. Costs are predictable – returns are
not. Throw away very expensive systems.
● Throw away very slow systems (LAM)
Use fake data to “fit” algo: method
What value(s) should we use for window_size?
1) Get an understanding of how trend length relates to
profitability of window_size
2) Get an idea of how fast different window_size will trade
3) Prune any window_size that are likely to be too
expensive
4) Prune any window_size that are likely to be too slow
5) Understand correlation structure to work out best
window_size pattern
Use fake data to “fit” algo: Generating data
=
+ N(0,)
qoppac.blogspot.com/2015/11/using-random-data.html
Use fake data to “fit” algo:
Trend length & window_size: pre-cost SR
21 64 128 192 256
5 1 week 6.4 2.1 0.3 0.2 0
10 2 weeks 4.5 2.6 0.6 0.2 0
15 3 weeks 1.6 2.9 0.8 0.2 0
21 1 month -2.0 2.9 1.1 0.2 0.1
42 2 months -11 1.6 1.4 0.4 0.1
64 3 months -0.4 -0.1 1.1 0.5 0.1
85 4 months -5.0 -1.8 0.8 0.5 0.1
107 5 months -0.1 -3.0 0.4 0.5 0.1
128 6 months -3.0 0 0.5 0.1
150 7 months -1.8 -0.5 0.3 0.1
171 8 months -0.5 -0.7 0.3 0.2
192 9 months -0.1 -1.0 0.1 0.2
213 10 months -1.3 0 0.2
235 11 months -1.6 -0.2 0.2
256 12 months -1.6 -0.3 0.1
Window size>192
essentially pointless (LAM)
Use fake data to “fit” algo:
window_size and trading speed
Turnover/year
5 1 week 176
10 2 weeks 75
15 3 weeks 49
21 1 month 36
42 2 months 21
64 3 months 13
85 4 months 12
107 5 months 9.3
128 6 months 8.8
150 7 months 7.4
171 8 months 7.1
192 9 months 6.5
213 10 months 6.5
235 11 months 6.1
256 12 months 6.1
Turnover / year
So turnover = 52 implies
holding period of one
week
Barely any
improvement beyond
window_size>191
Use fake data to “fit” algo:
window_size and costs
Cheap eg
SP500
Expensive
eg
EDOLLAR
5 1 week 17.6 176
10 2 weeks 7.5 75
15 3 weeks 4.9 49
21 1 month 3.6 36
42 2 months 2.1 21
64 3 months 1.3 13
85 4 months 1.2 12
107 5 months 0.92 9.3
128 6 months 0.88 8.8
150 7 months 0.74 7.4
171 8 months 0.71 7.1
192 9 months 0.65 6.5
213 10 months 0.65 6.5
235 11 months 0.61 6.1
Costs in bp /year of
SR
Max allowable is 13bp
See ch.12 of my book
No point having
window_size =5
Use fake data to “fit” algo:
window_size and correlation structure
It turns out that if window_sizen+1
= window_sizen
* √2
Then correlation(forecastn+1
, forecastn
) ~ 0.90
And correlation(forecastanother n
, forecastn
) < 0.90
Use fake data to “fit” algo: Final iteration
Summary of findings:
● Window size in √2 steps covers the space best
● Window size <10 too expensive for any instrument
● Window size>200 pointlessly slow
Window_size = [10,14,20,28,40,57,80, 113,160]
Should capture trends lasting for around 1 month to 18
months
Designing a trading strategy – 6 steps:
● Start with a sound framework which imposes some
conditions
● Come up with the idea
● Use some random data or single scenario of real data
plus theory / common sense to develop algo
● Use fake data to “fit” algo
● Real data for parameter sensitivity check / sense
check
● Fit allocation using real data (out of sample, robust
optimisation)
NOTE: Although I’m using real data, I’m not going to be
looking at performance.
Real data check: consistent scaling
Window
size:
10 14 20 28 40 57 80 113 160
Corn 0.14 0.17 0.20 0.22 0.26 0.29 0.32 0.37 0.42
Eurodollar 0.13 0.15 0.18 0.20 0.24 0.28 0.33 0.39 0.43
S&P 500 0.14 0.18 0.21 0.25 0.30 0.36 0.42 0.50 0.56
US 10 year
bond
0.13 0.16 0.19 0.22 0.26 0.30 0.36 0.42 0.48
Real data check: turnover
window_size turnover
10 80.4
14 55.2
20 36.9
28 25.8
40 18.4
57 13.6
80 10.7
113 8.6
160 7.0
Real data check: costs
Window
size:
10 14 20 28 40 57 80 113 160
Corn 0.40 0.27 0.18 0.13 0.09 0.07 0.05 0.04 0.03
Eurodollar 0.64 0.44 0.29 0.20 0.14 0.11 0.08 0.07 0.05
S&P 500 0.10 0.07 0.05 0.04 0.03 0.02 0.02 0.01 0.01
US 10 year
bond
0.25 0.17 0.12 0.08 0.06 0.04 0.03 0.03 0.02
Real data check: correlation structure
Highest correlation between any two pairs of
window_size; 0.85
Designing a trading strategy – 6 steps:
● Start with a sound framework which imposes some
conditions
● Come up with the idea
● Use some random data or single scenario of real data
plus theory / common sense to develop algo
● Use fake data to “fit” algo
● Real data for parameter sensitivity check / sense
check
● Fit allocation using real data (out of sample,
robust optimisation)
First and last time I will use performance
calculated using real data.
Conditions: reminder
● Trading rules make forecasts of risk adjusted price changes
● Forecasts are continous, not discrete entry + exit conditions
● Forecasts are scaled in an instrument / temporal independent
way (no “magic numbers”)
● Forecast is proportional to E(Sharpe Ratio  / )
[Position is proportional to Forecast / hence position is
proportional to  / 

● E(abs(forecast)) = 10.0
● In principal all forecasts used on all markets (portfolio
optimisation stage will become later)
● Use multiple variations of the same trading rule to capture
different time frames (as many as possible, not too highly
correlated)
● Costs are the most important thing. The second most
important thing is costs. Costs are predictable – returns are
not. Throw away very expensive systems.
● Throw away very slow systems (LAM)
Fit allocation using real data
Combined forecast = w1
f1
+ w2
f2
+ w3
f3
+ …
f are in same vol scale so, values of w depend on:
● Pre-cost performance (different by market?)
● Costs (different by market)
● Correlation structure
● Well known portfolio optimisation problem….
● … with well known problems (estimation error, extreme
weights)
● …. and well known solutions: clustering, shrinkage,
bootstrapping…
● Only line of defence against incorporating a (statistically
sigificantly) loss making trading rule in our system
Fit allocation using real data: Hypocrisy?
An aside, Why is fitting model parameters bad...
… but optimising model portfolio allocations
acceptable?
Answers:
● Parameter space much smaller
● Rolling out of sample is feasible
● Nicer surface
● Well developed techniques exist to cope with
problems and use correct amount of degrees of
freedom
● Much harder to do implicit fitting = much easier to
resist the temptation
Fit allocation using real data:
Some account curves
Fit allocation using real data:
Some account curves
Summary
● Three types of over fitting: tacit, implicit, explicit.
● You can’t get around tacit knowledge.
● Use tacit knowledge to design trading strategies.
Design process:
● Start with a sound framework which imposes some
conditions
● Come up with the idea
● Use some random data or single scenario of real data
plus theory / common sense to develop algo
● Use fake data to “fit” algo
● Real data for parameter sensitivity check / sense
check
● Fit allocation using real data (out of sample, robust
optimisation)
My first book:
systematictrading.org
My second book:
TBC
My blog:
qoppac.blogspot.com
Some python:
github.com/robcarver17/
Twittering:
@investingidiocy

More Related Content

What's hot

Classification of quantitative trading strategies webinar ppt
Classification of quantitative trading strategies webinar pptClassification of quantitative trading strategies webinar ppt
Classification of quantitative trading strategies webinar ppt
QuantInsti
 
"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
 
"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
 
"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
 
"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
 
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016
Quantopian
 
Quant trading with artificial intelligence
Quant trading with artificial intelligenceQuant trading with artificial intelligence
Quant trading with artificial intelligence
Roger Lee, CFA
 
Top 8 Forex Trading Strategies That Pro Traders Use
Top 8 Forex Trading Strategies That Pro Traders UseTop 8 Forex Trading Strategies That Pro Traders Use
Top 8 Forex Trading Strategies That Pro Traders Use
Syrous Pejman
 
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
 
"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
 
BUILDING AUTOMATED TRADING STRATEGIES
BUILDING AUTOMATED TRADING STRATEGIESBUILDING AUTOMATED TRADING STRATEGIES
BUILDING AUTOMATED TRADING STRATEGIES
Qexpert.com Financial
 
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
 
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
 
Algo Trading
Algo TradingAlgo Trading
Algo Trading
Francesco Torraco
 
Intra-Day De Mark Plus Order Flow Indicator by Dr. Christopher Ting, SMU
  Intra-Day De Mark Plus Order Flow Indicator by Dr. Christopher Ting, SMU  Intra-Day De Mark Plus Order Flow Indicator by Dr. Christopher Ting, SMU
Intra-Day De Mark Plus Order Flow Indicator by Dr. Christopher Ting, SMU
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
 
QuantConnect - Introduction to Pairs Trading
QuantConnect - Introduction to Pairs TradingQuantConnect - Introduction to Pairs Trading
QuantConnect - Introduction to Pairs Trading
QuantConnect
 
"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
 
"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
 
Magic Breakout Forex Trading Strategy PDF eBook
Magic Breakout Forex Trading Strategy PDF eBookMagic Breakout Forex Trading Strategy PDF eBook
Magic Breakout Forex Trading Strategy PDF eBook
eforexcourse web
 

What's hot (20)

Classification of quantitative trading strategies webinar ppt
Classification of quantitative trading strategies webinar pptClassification of quantitative trading strategies webinar ppt
Classification of quantitative trading strategies webinar ppt
 
"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...
 
"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...
 
"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...
 
"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...
 
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016
Should You Build Your Own Backtester? by Michael Halls-Moore at QuantCon 2016
 
Quant trading with artificial intelligence
Quant trading with artificial intelligenceQuant trading with artificial intelligence
Quant trading with artificial intelligence
 
Top 8 Forex Trading Strategies That Pro Traders Use
Top 8 Forex Trading Strategies That Pro Traders UseTop 8 Forex Trading Strategies That Pro Traders Use
Top 8 Forex Trading Strategies That Pro Traders Use
 
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
 
"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 ...
 
BUILDING AUTOMATED TRADING STRATEGIES
BUILDING AUTOMATED TRADING STRATEGIESBUILDING AUTOMATED TRADING STRATEGIES
BUILDING AUTOMATED TRADING STRATEGIES
 
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...
 
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...
 
Algo Trading
Algo TradingAlgo Trading
Algo Trading
 
Intra-Day De Mark Plus Order Flow Indicator by Dr. Christopher Ting, SMU
  Intra-Day De Mark Plus Order Flow Indicator by Dr. Christopher Ting, SMU  Intra-Day De Mark Plus Order Flow Indicator by Dr. Christopher Ting, SMU
Intra-Day De Mark Plus Order Flow Indicator by Dr. Christopher Ting, SMU
 
"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 ...
 
QuantConnect - Introduction to Pairs Trading
QuantConnect - Introduction to Pairs TradingQuantConnect - Introduction to Pairs Trading
QuantConnect - Introduction to Pairs Trading
 
"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...
 
"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...
 
Magic Breakout Forex Trading Strategy PDF eBook
Magic Breakout Forex Trading Strategy PDF eBookMagic Breakout Forex Trading Strategy PDF eBook
Magic Breakout Forex Trading Strategy PDF eBook
 

Similar to "Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independent Systematic Futures Trader, Writer, and Research Consultant

Section I - CH 1 - System Design and Testing.pdf
Section I - CH 1 - System Design and Testing.pdfSection I - CH 1 - System Design and Testing.pdf
Section I - CH 1 - System Design and Testing.pdf
Professional Training Academy
 
Risk Management- CH 1 - System Design and Testing | CMT Level 3 | Chartered M...
Risk Management- CH 1 - System Design and Testing | CMT Level 3 | Chartered M...Risk Management- CH 1 - System Design and Testing | CMT Level 3 | Chartered M...
Risk Management- CH 1 - System Design and Testing | CMT Level 3 | Chartered M...
Professional Training Academy
 
Data Visualization: Sales forecasting
Data Visualization: Sales forecastingData Visualization: Sales forecasting
Data Visualization: Sales forecasting
AlgoAnalytics Financial Consultancy Pvt. Ltd.
 
Section I - CH 3 - System Evaluation and Testing.pdf
Section I - CH 3 - System Evaluation and Testing.pdfSection I - CH 3 - System Evaluation and Testing.pdf
Section I - CH 3 - System Evaluation and Testing.pdf
Professional Training Academy
 
Risk Management - CH 3 - System Evaluation and Testing | CMT Level 3 | Charte...
Risk Management - CH 3 - System Evaluation and Testing | CMT Level 3 | Charte...Risk Management - CH 3 - System Evaluation and Testing | CMT Level 3 | Charte...
Risk Management - CH 3 - System Evaluation and Testing | CMT Level 3 | Charte...
Professional Training Academy
 
Trading System Seminar Handout
Trading System Seminar HandoutTrading System Seminar Handout
Trading System Seminar HandoutDean Hoffman
 
00 h naaim_assessing_trading_system_health_bandy
00 h naaim_assessing_trading_system_health_bandy00 h naaim_assessing_trading_system_health_bandy
00 h naaim_assessing_trading_system_health_bandyVic Liu
 
Crowdsource Earnings Predictions and the Quantopian Research Platform
Crowdsource Earnings Predictions and the Quantopian Research PlatformCrowdsource Earnings Predictions and the Quantopian Research Platform
Crowdsource Earnings Predictions and the Quantopian Research Platform
Quantopian
 
Can we use Mixture Models to Predict Market Bottoms? by Brian Christopher - 2...
Can we use Mixture Models to Predict Market Bottoms? by Brian Christopher - 2...Can we use Mixture Models to Predict Market Bottoms? by Brian Christopher - 2...
Can we use Mixture Models to Predict Market Bottoms? by Brian Christopher - 2...
QuantInsti
 
Stock Picking Strategies
Stock Picking StrategiesStock Picking Strategies
Stock Picking StrategiesJenny Hubbard
 
Stock Market Prediction Using Artificial Neural Network
Stock Market Prediction Using Artificial Neural NetworkStock Market Prediction Using Artificial Neural Network
Stock Market Prediction Using Artificial Neural Network
INFOGAIN PUBLICATION
 
OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL
OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODELOPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL
OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL
IJCI JOURNAL
 
Fundamental n Technical analysis
Fundamental n Technical analysisFundamental n Technical analysis
Fundamental n Technical analysis
Fortuna Favi et Fortus Ltd.
 
Unifying Technical Analysis and Statistical Arbitrage
Unifying Technical Analysis and Statistical ArbitrageUnifying Technical Analysis and Statistical Arbitrage
Unifying Technical Analysis and Statistical Arbitrage
ZakMaymin
 
Melbourne Datathon Challenge 2019 (Buy Low Sell High)
Melbourne Datathon Challenge 2019 (Buy Low Sell High)Melbourne Datathon Challenge 2019 (Buy Low Sell High)
Melbourne Datathon Challenge 2019 (Buy Low Sell High)
Vishva Abeyrathne
 
Pairs Trading
Pairs TradingPairs Trading
Pairs Trading
Vincent Chen
 
Fundamental of technical analysis
Fundamental of technical analysisFundamental of technical analysis
Fundamental of technical analysis
parshuram2455
 
System Design & testing
System Design  & testing System Design  & testing
System Design & testing
Professional Training Academy
 
Cmt learning objective 37 system trading &amp; testing - copy
Cmt learning objective 37  system trading &amp; testing - copyCmt learning objective 37  system trading &amp; testing - copy
Cmt learning objective 37 system trading &amp; testing - copy
Professional Training Academy
 
Algorithmic Trading Basics: Strategies & Systems
Algorithmic Trading Basics: Strategies & SystemsAlgorithmic Trading Basics: Strategies & Systems
Algorithmic Trading Basics: Strategies & Systems
AlgorithmicTrading.net
 

Similar to "Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independent Systematic Futures Trader, Writer, and Research Consultant (20)

Section I - CH 1 - System Design and Testing.pdf
Section I - CH 1 - System Design and Testing.pdfSection I - CH 1 - System Design and Testing.pdf
Section I - CH 1 - System Design and Testing.pdf
 
Risk Management- CH 1 - System Design and Testing | CMT Level 3 | Chartered M...
Risk Management- CH 1 - System Design and Testing | CMT Level 3 | Chartered M...Risk Management- CH 1 - System Design and Testing | CMT Level 3 | Chartered M...
Risk Management- CH 1 - System Design and Testing | CMT Level 3 | Chartered M...
 
Data Visualization: Sales forecasting
Data Visualization: Sales forecastingData Visualization: Sales forecasting
Data Visualization: Sales forecasting
 
Section I - CH 3 - System Evaluation and Testing.pdf
Section I - CH 3 - System Evaluation and Testing.pdfSection I - CH 3 - System Evaluation and Testing.pdf
Section I - CH 3 - System Evaluation and Testing.pdf
 
Risk Management - CH 3 - System Evaluation and Testing | CMT Level 3 | Charte...
Risk Management - CH 3 - System Evaluation and Testing | CMT Level 3 | Charte...Risk Management - CH 3 - System Evaluation and Testing | CMT Level 3 | Charte...
Risk Management - CH 3 - System Evaluation and Testing | CMT Level 3 | Charte...
 
Trading System Seminar Handout
Trading System Seminar HandoutTrading System Seminar Handout
Trading System Seminar Handout
 
00 h naaim_assessing_trading_system_health_bandy
00 h naaim_assessing_trading_system_health_bandy00 h naaim_assessing_trading_system_health_bandy
00 h naaim_assessing_trading_system_health_bandy
 
Crowdsource Earnings Predictions and the Quantopian Research Platform
Crowdsource Earnings Predictions and the Quantopian Research PlatformCrowdsource Earnings Predictions and the Quantopian Research Platform
Crowdsource Earnings Predictions and the Quantopian Research Platform
 
Can we use Mixture Models to Predict Market Bottoms? by Brian Christopher - 2...
Can we use Mixture Models to Predict Market Bottoms? by Brian Christopher - 2...Can we use Mixture Models to Predict Market Bottoms? by Brian Christopher - 2...
Can we use Mixture Models to Predict Market Bottoms? by Brian Christopher - 2...
 
Stock Picking Strategies
Stock Picking StrategiesStock Picking Strategies
Stock Picking Strategies
 
Stock Market Prediction Using Artificial Neural Network
Stock Market Prediction Using Artificial Neural NetworkStock Market Prediction Using Artificial Neural Network
Stock Market Prediction Using Artificial Neural Network
 
OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL
OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODELOPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL
OPENING RANGE BREAKOUT STOCK TRADING ALGORITHMIC MODEL
 
Fundamental n Technical analysis
Fundamental n Technical analysisFundamental n Technical analysis
Fundamental n Technical analysis
 
Unifying Technical Analysis and Statistical Arbitrage
Unifying Technical Analysis and Statistical ArbitrageUnifying Technical Analysis and Statistical Arbitrage
Unifying Technical Analysis and Statistical Arbitrage
 
Melbourne Datathon Challenge 2019 (Buy Low Sell High)
Melbourne Datathon Challenge 2019 (Buy Low Sell High)Melbourne Datathon Challenge 2019 (Buy Low Sell High)
Melbourne Datathon Challenge 2019 (Buy Low Sell High)
 
Pairs Trading
Pairs TradingPairs Trading
Pairs Trading
 
Fundamental of technical analysis
Fundamental of technical analysisFundamental of technical analysis
Fundamental of technical analysis
 
System Design & testing
System Design  & testing System Design  & testing
System Design & testing
 
Cmt learning objective 37 system trading &amp; testing - copy
Cmt learning objective 37  system trading &amp; testing - copyCmt learning objective 37  system trading &amp; testing - copy
Cmt learning objective 37 system trading &amp; testing - copy
 
Algorithmic Trading Basics: Strategies & Systems
Algorithmic Trading Basics: Strategies & SystemsAlgorithmic Trading Basics: Strategies & Systems
Algorithmic Trading Basics: Strategies & Systems
 

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
 
"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
 
"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 (20)

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...
 
"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 ...
 
"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

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
 
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
 
Instant Issue Debit Cards - High School Spirit
Instant Issue Debit Cards - High School SpiritInstant Issue Debit Cards - High School Spirit
Instant Issue Debit Cards - High School Spirit
egoetzinger
 
Introduction to Value Added Tax System.ppt
Introduction to Value Added Tax System.pptIntroduction to Value Added Tax System.ppt
Introduction to Value Added Tax System.ppt
VishnuVenugopal84
 
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
 
how can I sell pi coins after successfully completing KYC
how can I sell pi coins after successfully completing KYChow can I sell pi coins after successfully completing KYC
how can I sell pi coins after successfully completing KYC
DOT TECH
 
一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
bbeucd
 
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
 
Earn a passive income with prosocial investing
Earn a passive income with prosocial investingEarn a passive income with prosocial investing
Earn a passive income with prosocial investing
Colin R. Turner
 
Tax System, Behaviour, Justice, and Voluntary Compliance Culture in Nigeria -...
Tax System, Behaviour, Justice, and Voluntary Compliance Culture in Nigeria -...Tax System, Behaviour, Justice, and Voluntary Compliance Culture in Nigeria -...
Tax System, Behaviour, Justice, and Voluntary Compliance Culture in Nigeria -...
Godwin Emmanuel Oyedokun MBA MSc PhD FCA FCTI FCNA CFE FFAR
 
how to sell pi coins in South Korea profitably.
how to sell pi coins in South Korea profitably.how to sell pi coins in South Korea profitably.
how to sell pi coins in South Korea profitably.
DOT TECH
 
一比一原版(UoB毕业证)伯明翰大学毕业证如何办理
一比一原版(UoB毕业证)伯明翰大学毕业证如何办理一比一原版(UoB毕业证)伯明翰大学毕业证如何办理
一比一原版(UoB毕业证)伯明翰大学毕业证如何办理
nexop1
 
innovative-invoice-discounting-platforms-in-india-empowering-retail-investors...
innovative-invoice-discounting-platforms-in-india-empowering-retail-investors...innovative-invoice-discounting-platforms-in-india-empowering-retail-investors...
innovative-invoice-discounting-platforms-in-india-empowering-retail-investors...
Falcon Invoice Discounting
 
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
 
how to sell pi coins effectively (from 50 - 100k pi)
how to sell pi coins effectively (from 50 - 100k  pi)how to sell pi coins effectively (from 50 - 100k  pi)
how to sell pi coins effectively (from 50 - 100k pi)
DOT TECH
 
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
 
What price will pi network be listed on exchanges
What price will pi network be listed on exchangesWhat price will pi network be listed on exchanges
What price will pi network be listed on exchanges
DOT TECH
 
Patronage and Good Governance 5.pptx pptc
Patronage and Good Governance 5.pptx pptcPatronage and Good Governance 5.pptx pptc
Patronage and Good Governance 5.pptx pptc
AbdulNasirNichari
 
Scope Of Macroeconomics introduction and basic theories
Scope Of Macroeconomics introduction and basic theoriesScope Of Macroeconomics introduction and basic theories
Scope Of Macroeconomics introduction and basic theories
nomankalyar153
 
What website can I sell pi coins securely.
What website can I sell pi coins securely.What website can I sell pi coins securely.
What website can I sell pi coins securely.
DOT TECH
 

Recently uploaded (20)

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
 
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.
 
Instant Issue Debit Cards - High School Spirit
Instant Issue Debit Cards - High School SpiritInstant Issue Debit Cards - High School Spirit
Instant Issue Debit Cards - High School Spirit
 
Introduction to Value Added Tax System.ppt
Introduction to Value Added Tax System.pptIntroduction to Value Added Tax System.ppt
Introduction to Value Added Tax System.ppt
 
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...
 
how can I sell pi coins after successfully completing KYC
how can I sell pi coins after successfully completing KYChow can I sell pi coins after successfully completing KYC
how can I sell pi coins after successfully completing KYC
 
一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB毕业证)圣芭芭拉分校毕业证如何办理
 
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
 
Earn a passive income with prosocial investing
Earn a passive income with prosocial investingEarn a passive income with prosocial investing
Earn a passive income with prosocial investing
 
Tax System, Behaviour, Justice, and Voluntary Compliance Culture in Nigeria -...
Tax System, Behaviour, Justice, and Voluntary Compliance Culture in Nigeria -...Tax System, Behaviour, Justice, and Voluntary Compliance Culture in Nigeria -...
Tax System, Behaviour, Justice, and Voluntary Compliance Culture in Nigeria -...
 
how to sell pi coins in South Korea profitably.
how to sell pi coins in South Korea profitably.how to sell pi coins in South Korea profitably.
how to sell pi coins in South Korea profitably.
 
一比一原版(UoB毕业证)伯明翰大学毕业证如何办理
一比一原版(UoB毕业证)伯明翰大学毕业证如何办理一比一原版(UoB毕业证)伯明翰大学毕业证如何办理
一比一原版(UoB毕业证)伯明翰大学毕业证如何办理
 
innovative-invoice-discounting-platforms-in-india-empowering-retail-investors...
innovative-invoice-discounting-platforms-in-india-empowering-retail-investors...innovative-invoice-discounting-platforms-in-india-empowering-retail-investors...
innovative-invoice-discounting-platforms-in-india-empowering-retail-investors...
 
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
 
how to sell pi coins effectively (from 50 - 100k pi)
how to sell pi coins effectively (from 50 - 100k  pi)how to sell pi coins effectively (from 50 - 100k  pi)
how to sell pi coins effectively (from 50 - 100k pi)
 
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
 
What price will pi network be listed on exchanges
What price will pi network be listed on exchangesWhat price will pi network be listed on exchanges
What price will pi network be listed on exchanges
 
Patronage and Good Governance 5.pptx pptc
Patronage and Good Governance 5.pptx pptcPatronage and Good Governance 5.pptx pptc
Patronage and Good Governance 5.pptx pptc
 
Scope Of Macroeconomics introduction and basic theories
Scope Of Macroeconomics introduction and basic theoriesScope Of Macroeconomics introduction and basic theories
Scope Of Macroeconomics introduction and basic theories
 
What website can I sell pi coins securely.
What website can I sell pi coins securely.What website can I sell pi coins securely.
What website can I sell pi coins securely.
 

"Trading Strategies That Are Designed Not Fitted" by Robert Carver, Independent Systematic Futures Trader, Writer, and Research Consultant

  • 1. Trading Strategies That Are Designed Not Fitted Robert Carver QuantCon 2017 / New York / 29th April 2017
  • 2. Legal boilerplate bit: Nothing in this presentation constitutes investment advice, or an offer or solicitation to conduct investment business. The material here is solely for educational purposes. Robert Carver is not currently regulated or authorised by the FCA, SEC, CFTC, or any other regulatory body to give investment advice, or indeed to do anything else. Futures trading carries significant risks and is not suitable for all investors. Back tested and actual historic results are no guarantee of future performance. Use of the material in this presentation is entirely at your own risk.
  • 3. My 27 year old self
  • 4. How my 27 year old self thought systematic trading design should work... Data Magic box Trading strategy Algo + Parameters Data first
  • 5. Why is fitting bad…. "The elements of statistical learning" by Hastie et al fig 2.11
  • 6. The three types of fitting... Explicit Implicit Tacit
  • 7. Tacit financial market knowledge Theory Common sense Theory Market folkore Previous research
  • 8. How do we design rather than fit? ➢ Acknowledge and embrace tacit knowledge ➢ Avoid implicit fitting ➢ Do the minimum amount of explicit fitting, and do it right. Start with ideas not data
  • 9. How my ~43 year old self designs trading strategies... Tactit knowledge Design process Trading strategy Algo + Parameters Ideas first Real Data Fake data
  • 10. How my ~43 year old self designs trading strategies... Theory Design process Common sense Market folkore Previous research Real Data Fake data
  • 11. How do people design real products... Theory Design process Personal taste Market research Previous products Focus group Prototypes
  • 12. Tacit knowledge: Trend following ● Market folklore: ● “Cut your losers and let your winners run” ● “Don’t fight the tape” ● Turtle Traders ● US CTA tradition (Campbell, Chesapeake, Dunn), UK CTA tradition (AHL, Winton, Aspect), Europeans (Transtrend, Systematica) ● Previous empirical research: ● Levy 1960 ● Jegadeesh and Titman 1993 ● Carhart “fourth factor” 1997 ● Theory: ● Prospect theory (Kahneman and Tversky 1992), ● Herding, Confirmation bias, under reaction. ● Behaviour of other participants (eg risk parity funds)
  • 13. Unanswered questions ● What period of time do trends last for? ● When should we enter trends? ● When should we exit trends? ● Should we have a stop loss rule? What is it? ● How do we identify markets that are, or aren’t “trend friendly”? ● How do we identify how strong the trend is? ● What size should our positions be? ● What is our algo? ● What are it’s parameters?
  • 14. Data first Data Magic box Strategy = Best Algo + Best parameters Possible algos Possible parameters
  • 15. What is best strategy? Data first answer: Best return versus risk in dataset Assuming leverage is possible and risk is Gaussian: Highest Sharpe Ratio (Other measures are available…) Single metric of ‘best’: Performance Single source of information: Past data
  • 16. What is best strategy? Ideas first answer: Best designed strategy Multi-faceted metrics: Performance, turnover, behaviour in given scenarios... Multi-faceted sources of information: Common sense, Theoretical principles, Fake data, (Limited amounts of) Real Data
  • 17. Designing a trading strategy – 6 steps: ● Start with a sound framework which imposes some conditions ● Come up with the idea ● Use some random data or single scenario of real data plus theory / common sense to develop algo ● Use fake data to “fit” algo ● Real data for parameter sensitivity check / sense check ● Fit allocation using real data (out of sample, robust optimisation)
  • 18. Designing a trading strategy – 6 steps: ● Start with a sound framework which imposes some conditions ● Come up with the idea ● Use some random data or single scenario of real data plus theory / common sense to develop algo ● Use fake data to “fit” algo ● Real data for parameter sensitivity check / sense check ● Fit allocation using real data (out of sample, robust optimisation)
  • 19. Start with a sound framework Trading rule 1 Trading rule 2 Trading rule 3 SP500 EDOLLAR CORN Combine forecasts from trading rules Position sizing Portfolio: Weight instrument positions Risk targeting
  • 20. Start with a sound framework: Conditions ● Trading rules make forecasts of risk adjusted price changes ● Forecasts are continous, not discrete entry + exit conditions ● Forecasts are scaled in an instrument / temporal independent way (no “magic numbers”) ● Forecast is proportional to E(Sharpe Ratio  / ) [Position is proportional to Forecast / hence position is proportional to  /   ● E(abs(forecast)) = 10.0 ● In principal all forecasts used on all markets (portfolio optimisation stage will become later) ● Use multiple variations of the same trading rule to capture different time frames (as many as possible, not too highly correlated) ● Costs are the most important thing. The second most important thing is costs. Costs are predictable – returns are not. Throw away very expensive systems. ● Throw away very slow systems (LAM)
  • 21. Start with a sound framework … remember these questions? ● What period of time do trends last for? ● When should we enter trends? ● When should we exit trends? ● Should we have a stop loss rule? What is it? ● How do we identify markets that are, or aren’t “trend friendly”? ● How do we identify how strong the trend is? ● What size should our positions be?
  • 22. Start with a sound framework … remember these questions? ● What period of time do trends last for? ● When should we enter trends? ● When should we exit trends? ● Should we have a stop loss rule? What is it? ● How do we identify markets that are, or aren’t “trend friendly”? ● How do we identify how strong the trend is? ● What size should our positions be? Fewer open questions: Fewer parameters to “fit” or design
  • 23. Designing a trading strategy – 6 steps: ● Start with a sound framework which imposes some conditions ● Come up with the idea ● Use some random data or single scenario of real data plus theory / common sense to develop algo ● Use fake data to “fit” algo ● Real data for parameter sensitivity check / sense check ● Fit allocation using real data (out of sample, robust optimisation)
  • 24. Come up with the idea: What are trends?
  • 25. Come up with the idea Linear regression price against time, using Ordinary Least Squares: y =  + x + minimise  with y = price, and x = some measure of time (eg years) price in uptrend price in downtrend We use a rolling regression over the last N weekdays to capture different length trends. Single parameter: window_size
  • 26. Designing a trading strategy – 6 steps: ● Start with a sound framework which imposes some conditions ● Come up with the idea ● Use some random data or single scenario of real data plus theory / common sense to develop algo ● Use fake data to “fit” algo ● Real data for parameter sensitivity check / sense check ● Fit allocation using real data (out of sample, robust optimisation)
  • 27. Develop algo: Real scenario… 2008  = -564.1 points/year
  • 28. Conditions (reminder) ● Trading rules make forecasts of risk adjusted price changes ● Forecasts are continous, not discrete entry + exit conditions ● Forecasts are scaled in an instrument / temporal independent way (no “magic numbers”) ● Forecast is proportional to E(Sharpe Ratio  / ) [Position is proportional to Forecast / hence position is proportional to  /   ● E(abs(forecast)) = 10.0 ● In principal all forecasts used on all markets (portfolio optimisation stage will become later) ● Use multiple variations of the same trading rule to capture different time frames (as many as possible, not too highly correlated) ● Costs are the most important thing. The second most important thing is costs. Costs are predictable – returns are not. Throw away very expensive systems. ● Throw away very slow systems (LAM)
  • 29. Develop algo: Evaluate design Does this scale well? No… (No need to look at data! Common sense!) Forecast is proportional to E(Sharpe Ratio =  / ) [Position is proportional to Forecast / hence position is proportional to  /   in units of (price) so: Forecast =  Where is measured is annual standard deviation of (price) (No need to look at data! Theory)
  • 31. Develop algo: Evaluate design Does this scale well? Yes. Does behaviour make sense? Yes. Bullish in bull markets, bearish in bear markets How about the trading speed? Seems reasonable given the length of trends involved Anything weird? Yes Need to set initial min_periods to a higher value (eg window_size / 4 : Common sense!) Too slow? Probably N=256 is the slowest we’d go (LAM)
  • 32. Designing a trading strategy – 6 steps: ● Start with a sound framework which imposes some conditions ● Come up with the idea ● Use some random data or single scenario of real data plus theory / common sense to develop algo ● Use fake data to “fit” algo ● Real data for parameter sensitivity check / sense check ● Fit allocation using real data (out of sample, robust optimisation)
  • 33. Conditions (reminder) ● Trading rules make forecasts of risk adjusted price changes ● Forecasts are continous, not discrete entry + exit conditions ● Forecasts are scaled in an instrument / temporal independent way (no “magic numbers”) ● Forecast is proportional to E(Sharpe Ratio  / ) [Position is proportional to Forecast / hence position is proportional to  /   ● E(abs(forecast)) = 10.0 ● In principal all forecasts used on all markets (portfolio optimisation stage will become later) ● Use multiple variations of the same trading rule to capture different time frames (as many as possible, not too highly correlated) ● Costs are the most important thing. The second most important thing is costs. Costs are predictable – returns are not. Throw away very expensive systems. ● Throw away very slow systems (LAM)
  • 34. Use fake data to “fit” algo: method What value(s) should we use for window_size? 1) Get an understanding of how trend length relates to profitability of window_size 2) Get an idea of how fast different window_size will trade 3) Prune any window_size that are likely to be too expensive 4) Prune any window_size that are likely to be too slow 5) Understand correlation structure to work out best window_size pattern
  • 35. Use fake data to “fit” algo: Generating data = + N(0,) qoppac.blogspot.com/2015/11/using-random-data.html
  • 36. Use fake data to “fit” algo: Trend length & window_size: pre-cost SR 21 64 128 192 256 5 1 week 6.4 2.1 0.3 0.2 0 10 2 weeks 4.5 2.6 0.6 0.2 0 15 3 weeks 1.6 2.9 0.8 0.2 0 21 1 month -2.0 2.9 1.1 0.2 0.1 42 2 months -11 1.6 1.4 0.4 0.1 64 3 months -0.4 -0.1 1.1 0.5 0.1 85 4 months -5.0 -1.8 0.8 0.5 0.1 107 5 months -0.1 -3.0 0.4 0.5 0.1 128 6 months -3.0 0 0.5 0.1 150 7 months -1.8 -0.5 0.3 0.1 171 8 months -0.5 -0.7 0.3 0.2 192 9 months -0.1 -1.0 0.1 0.2 213 10 months -1.3 0 0.2 235 11 months -1.6 -0.2 0.2 256 12 months -1.6 -0.3 0.1 Window size>192 essentially pointless (LAM)
  • 37. Use fake data to “fit” algo: window_size and trading speed Turnover/year 5 1 week 176 10 2 weeks 75 15 3 weeks 49 21 1 month 36 42 2 months 21 64 3 months 13 85 4 months 12 107 5 months 9.3 128 6 months 8.8 150 7 months 7.4 171 8 months 7.1 192 9 months 6.5 213 10 months 6.5 235 11 months 6.1 256 12 months 6.1 Turnover / year So turnover = 52 implies holding period of one week Barely any improvement beyond window_size>191
  • 38. Use fake data to “fit” algo: window_size and costs Cheap eg SP500 Expensive eg EDOLLAR 5 1 week 17.6 176 10 2 weeks 7.5 75 15 3 weeks 4.9 49 21 1 month 3.6 36 42 2 months 2.1 21 64 3 months 1.3 13 85 4 months 1.2 12 107 5 months 0.92 9.3 128 6 months 0.88 8.8 150 7 months 0.74 7.4 171 8 months 0.71 7.1 192 9 months 0.65 6.5 213 10 months 0.65 6.5 235 11 months 0.61 6.1 Costs in bp /year of SR Max allowable is 13bp See ch.12 of my book No point having window_size =5
  • 39. Use fake data to “fit” algo: window_size and correlation structure It turns out that if window_sizen+1 = window_sizen * √2 Then correlation(forecastn+1 , forecastn ) ~ 0.90 And correlation(forecastanother n , forecastn ) < 0.90
  • 40. Use fake data to “fit” algo: Final iteration Summary of findings: ● Window size in √2 steps covers the space best ● Window size <10 too expensive for any instrument ● Window size>200 pointlessly slow Window_size = [10,14,20,28,40,57,80, 113,160] Should capture trends lasting for around 1 month to 18 months
  • 41. Designing a trading strategy – 6 steps: ● Start with a sound framework which imposes some conditions ● Come up with the idea ● Use some random data or single scenario of real data plus theory / common sense to develop algo ● Use fake data to “fit” algo ● Real data for parameter sensitivity check / sense check ● Fit allocation using real data (out of sample, robust optimisation) NOTE: Although I’m using real data, I’m not going to be looking at performance.
  • 42. Real data check: consistent scaling Window size: 10 14 20 28 40 57 80 113 160 Corn 0.14 0.17 0.20 0.22 0.26 0.29 0.32 0.37 0.42 Eurodollar 0.13 0.15 0.18 0.20 0.24 0.28 0.33 0.39 0.43 S&P 500 0.14 0.18 0.21 0.25 0.30 0.36 0.42 0.50 0.56 US 10 year bond 0.13 0.16 0.19 0.22 0.26 0.30 0.36 0.42 0.48
  • 43. Real data check: turnover window_size turnover 10 80.4 14 55.2 20 36.9 28 25.8 40 18.4 57 13.6 80 10.7 113 8.6 160 7.0
  • 44. Real data check: costs Window size: 10 14 20 28 40 57 80 113 160 Corn 0.40 0.27 0.18 0.13 0.09 0.07 0.05 0.04 0.03 Eurodollar 0.64 0.44 0.29 0.20 0.14 0.11 0.08 0.07 0.05 S&P 500 0.10 0.07 0.05 0.04 0.03 0.02 0.02 0.01 0.01 US 10 year bond 0.25 0.17 0.12 0.08 0.06 0.04 0.03 0.03 0.02
  • 45. Real data check: correlation structure Highest correlation between any two pairs of window_size; 0.85
  • 46. Designing a trading strategy – 6 steps: ● Start with a sound framework which imposes some conditions ● Come up with the idea ● Use some random data or single scenario of real data plus theory / common sense to develop algo ● Use fake data to “fit” algo ● Real data for parameter sensitivity check / sense check ● Fit allocation using real data (out of sample, robust optimisation) First and last time I will use performance calculated using real data.
  • 47. Conditions: reminder ● Trading rules make forecasts of risk adjusted price changes ● Forecasts are continous, not discrete entry + exit conditions ● Forecasts are scaled in an instrument / temporal independent way (no “magic numbers”) ● Forecast is proportional to E(Sharpe Ratio  / ) [Position is proportional to Forecast / hence position is proportional to  /   ● E(abs(forecast)) = 10.0 ● In principal all forecasts used on all markets (portfolio optimisation stage will become later) ● Use multiple variations of the same trading rule to capture different time frames (as many as possible, not too highly correlated) ● Costs are the most important thing. The second most important thing is costs. Costs are predictable – returns are not. Throw away very expensive systems. ● Throw away very slow systems (LAM)
  • 48. Fit allocation using real data Combined forecast = w1 f1 + w2 f2 + w3 f3 + … f are in same vol scale so, values of w depend on: ● Pre-cost performance (different by market?) ● Costs (different by market) ● Correlation structure ● Well known portfolio optimisation problem…. ● … with well known problems (estimation error, extreme weights) ● …. and well known solutions: clustering, shrinkage, bootstrapping… ● Only line of defence against incorporating a (statistically sigificantly) loss making trading rule in our system
  • 49. Fit allocation using real data: Hypocrisy? An aside, Why is fitting model parameters bad... … but optimising model portfolio allocations acceptable? Answers: ● Parameter space much smaller ● Rolling out of sample is feasible ● Nicer surface ● Well developed techniques exist to cope with problems and use correct amount of degrees of freedom ● Much harder to do implicit fitting = much easier to resist the temptation
  • 50. Fit allocation using real data: Some account curves
  • 51. Fit allocation using real data: Some account curves
  • 52. Summary ● Three types of over fitting: tacit, implicit, explicit. ● You can’t get around tacit knowledge. ● Use tacit knowledge to design trading strategies. Design process: ● Start with a sound framework which imposes some conditions ● Come up with the idea ● Use some random data or single scenario of real data plus theory / common sense to develop algo ● Use fake data to “fit” algo ● Real data for parameter sensitivity check / sense check ● Fit allocation using real data (out of sample, robust optimisation)
  • 53. My first book: systematictrading.org My second book: TBC My blog: qoppac.blogspot.com Some python: github.com/robcarver17/ Twittering: @investingidiocy