Part 1 Back Testing Quantitative Trading Strategies

Size: px
Start display at page:

Download "Part 1 Back Testing Quantitative Trading Strategies"

Transcription

1 Part 1 Back Testing Quantitative Trading Strategies A Guide to Your Team Project 1 of 21 February 27, 2017

2 Pre-requisite The most important ingredient to any quantitative trading strategy is data that are compatible with the nature of the strategy. For example, for intra-day trading strategy, you need at least one-minute bar data. For HFT, you need at leas tick data for backtesting. For ulta HFT, you need low-level messages received by the exchanges. 2 of 21 February 27, 2017

3 Data Example S/N Date Period Time1 Time2 Open High Low OF_ Close Trades Volume Trades OF_ Vol :00:00 7:00:00 7:00: :01:00 7:00:57 7:00: :02:00 7:02:19 7:02: :03:00 7:03:32 7:03: :04:00 7:03:32 7:03: :05:00 7:03:32 7:03: :06:00 7:03:32 7:03: :07:00 7:03:32 7:03: :08:00 7:08:20 7:08: Period: 1-minute interval Time 1: time at which the first trade in the 1-minute interval occurs Time 2: time at which the last trade in the 1-minute interval occurs OF_Trades: order flow in number of trades over 1minute OF_Vol: order flow in signed volume over 1 minute 3 of 21 February 27, 2017

4 Intra-Day BackTesting on One-Minute Data? You have a trading strategy, and it has a parameter denoted by θ. You have historical data of futures (or any other financial instruments). Suppose in your historical data, your trading strategy finds 200 trading signals to short (or to long). Suppose the parameter θ is the holding period before squaring off your position. You separate the 200 signals into two portions: o o Say, 70% of the signals are used for finding an optimal value of θ such that it gives the best in-sample performance in this 70%. Fix this optimal θ, and measure the out-of-sample performance of the trading strategy in the other 30% of the signals. 4 of 21 February 27, 2017

5 Buying and Selling in Back-Testing Ideally, you should have the best bid price and the best ask price at the beginning and also at the end of every minutes. When selling one contract at the beginning of t+1, you sell at the best bid price. When buying one contract at the end of t+1+θ, you buy at the best offer price. Your task is to find an optimal θ that gives the best performance after all costs such as commissions and clearing fees (if any). For the project, the per-contract commission is assumed to be 500 yens. 5 of 21 February 27, 2017

6 In-Sample Training of θ For every signal, the size of your position is one contract. You need to know the commission for trading one contract (assumed to be 500 yens per contract). When the signal is generated at time t, you cannot trade at time t but at (the beginning of) time t+1. As a risk management policy, you must square off any outstanding position before the trading session closes. At time t, you short, and at time t+1+θ, you square off your short position. Your task is to find an optimal θ that gives the best performance. 6 of 21 February 27, 2017

7 Specifically>>>> You let θ equal to 1 minute. Measure the performance for the 70% in-sample signals. You let θ equal to 2 minute. Again measure the insample performance. Do likewise, for θ up to 20 minutes. Obviously, as θ becomes larger, the number of tradable signals is smaller as time t+1+θ could be after the end of the trading session 7 of 21 February 27, 2017

8 What is a good performance measure? Before answering the question, look at the numbers generated by back-testing. A sequence of P&Ls after round-trip commission costs and other costs Based on the P&Ls, categorize the signals as correct and incorrect Count the numbers of correct and incorrect signals, which are denoted by N c and N i, respectively. The winning probability is p = N c N c + N i Obviously, higher p is better. 8 of 21 February 27, 2017

9 Reward-to-Risk Ratio Compute the average positive P&Ls of correct signals. Do likewise for incorrect signals. Let these averages be A c and A i, respectively. So A c can be interpreted as the average gain when the signal is correct, and A i is the average loss amount if the signal is incorrect. The reward-to-risk ratio is r = A c A i Obviously, higher r is better. 9 of 21 February 27, 2017

10 Sharpe Ratio and t statistic Compute the average P&L from the sequence of n number of P&Ls. Denote it by M n. Compute the unbiased standard deviation, denoted by S n. Sharpe ratio is simply the risk-adjusted P&L Sharpe = M n S n Given the null hypothesis of zero mean P&L, the t- statistic is, with n being the total number of signals in the sample, t = n M n 10 of 21 February 27, 2017 S n

11 THE Performance Measure The t statistic is a statistically sound measure. It shows the level of significance of the average P&L against the amount of variation in the in-sample P&L. Therefore, you mainly use the t statistic as the benchmark. You want to find θ * such that t is the largest possible. In other words, you are solving this maximization problem: M n θ * arg max n Sn 11 of 21 February 27, 2017

12 An Example of In-Sample Performance Holding Time Number of Total P&L Average Average Probability Trades (after comms) Gain Loss of win 3 70 $2, $ $ $3, $ $ $3, $ $ $3, $ $ $3, $ $ $3, $ $ $3, $ $ $4, $ $ $3, $ $ $3, $ $ $4, $ $ $4, $ $ $4, $ $ $4, $ $ t- statistic 12 of 21 February 27, 2017

13 What is the Performance of the Trading Strategy? It is the performance of the trading strategy on out-ofsample signals. Typically, in-sample performance measure is higher than that of out-of-sample. If the t statistic of out-of-sample performance is bigger than 2, then the quantitative trading strategy may generate consistent alpha. 13 of 21 February 27, 2017

14 When does a trading strategy stop working? No trading strategy will work forever. A good strategy may deteriorate over time! When to pull the plug? As a rule of thumb, look at the rolling 30-signal t statistic. If it becomes statistically insignificant, stop the trading strategy. 14 of 21 February 27, 2017

15 Equity Curve From the in-sample subsequence of P&Ls, x t, you can construct an equity curve as follows: In other words, C 1 = x 1, C 2 = C 1 + x 2 = x 1 + x 2, C 3 = C 2 + x 2 = x 1 + x 2 + x 3, and so on C t x s s 1 C n = C n-1 + x n = x 1 + x x n t 15 of 21 February 27, 2017

16 Illustration of Equity Curve and Drawdown or longest Source: Quantitative Trading: How to Build Your Own Algorithmic Trading Business (2009) 16 of 21 February 27, 2017

17 Performance Metrics: Maximum Drawdown The maximum drawdown characterises the largest peak-to-trough drop in the equity curve over a particular time period (usually annual). This is most often quoted as a percentage. LFT strategies will tend to have larger drawdowns than HFT strategies, due to a number of statistical factors. A historical backtest will show the past maximum drawdown, which is a good guide for the future drawdown performance of the strategy. 17 of 21 February 27, 2017

18 Sensitivity Analysis Sound, fundamental reasoning for parameter choices should, with all other factors considered, lead to a smoother parameter curve or surface. If you have a very jumpy performance surface, it often means that a parameter is not robust. There is a vast literature on multi-dimensional optimisation algorithms and it is a highly active area of research. 18 of 21 February 27, 2017

19 Examples of Sensitivity Analysis Good example: Parameter Sharpe Ratio 10.0% 10.3% 11.1% 11.5% 14.2% 12.8% 10.9% 9.2% 8.7% Sharpe ratio increases then decreases Bad example Parameter Sharpe Ratio 11.0% 6.3% 16.0% -5.5% 19.4% 2.0% 11.9% 19.2% 9.7% Sharpe ratio appears random 19 of 21 February 27, 2017

20 Project Administration What you need to prepare as a team: a project report and a set of presentation slides. Each team member will evaluate the performance and contribution of other members in the team, so as to be fair to the hard working, and persons with brilliant idea and strong skillset. If you are not presenting, you are to evaluate the presentation performance of the other teams. 20 of 21 February 27, 2017

21 Additional Incentives My ex prop firm is looking for a full-time quantitative researcher. Other boutique hedge funds are also looking for quantitative researchers. Usually a quant researchers, if doing exceptionally well, can transit to the role of a trader after a few years. If you worry too much about your academic grade, you probably won t survive in the jungle of trading. 21 of 21 February 27, 2017

Quantitative Trading System For The E-mini S&P

Quantitative Trading System For The E-mini S&P AURORA PRO Aurora Pro Automated Trading System Aurora Pro v1.11 For TradeStation 9.1 August 2015 Quantitative Trading System For The E-mini S&P By Capital Evolution LLC Aurora Pro is a quantitative trading

More information

QF206 Week 11. Part 2 Back Testing Case Study: A TA-Based Example. 1 of 44 March 13, Christopher Ting

QF206 Week 11. Part 2 Back Testing Case Study: A TA-Based Example. 1 of 44 March 13, Christopher Ting Part 2 Back Testing Case Study: A TA-Based Example 1 of 44 March 13, 2017 Introduction Sourcing algorithmic trading ideas Getting data Making sure data are clean and void of biases Selecting a software

More information

Algorithmic Trading Session 4 Trade Signal Generation II Backtesting. Oliver Steinki, CFA, FRM

Algorithmic Trading Session 4 Trade Signal Generation II Backtesting. Oliver Steinki, CFA, FRM Algorithmic Trading Session 4 Trade Signal Generation II Backtesting Oliver Steinki, CFA, FRM Outline Introduction Backtesting Common Pitfalls of Backtesting Statistical Signficance of Backtesting Summary

More information

Algorithmic Trading Session 12 Performance Analysis III Trade Frequency and Optimal Leverage. Oliver Steinki, CFA, FRM

Algorithmic Trading Session 12 Performance Analysis III Trade Frequency and Optimal Leverage. Oliver Steinki, CFA, FRM Algorithmic Trading Session 12 Performance Analysis III Trade Frequency and Optimal Leverage Oliver Steinki, CFA, FRM Outline Introduction Trade Frequency Optimal Leverage Summary and Questions Sources

More information

Financial Economics. Runs Test

Financial Economics. Runs Test Test A simple statistical test of the random-walk theory is a runs test. For daily data, a run is defined as a sequence of days in which the stock price changes in the same direction. For example, consider

More information

Quantitative Measure. February Axioma Research Team

Quantitative Measure. February Axioma Research Team February 2018 How When It Comes to Momentum, Evaluate Don t Cramp My Style a Risk Model Quantitative Measure Risk model providers often commonly report the average value of the asset returns model. Some

More information

AlgorithmicTrading Session 3 Trade Signal Generation I FindingTrading Ideas and Common Pitfalls. Oliver Steinki, CFA, FRM

AlgorithmicTrading Session 3 Trade Signal Generation I FindingTrading Ideas and Common Pitfalls. Oliver Steinki, CFA, FRM AlgorithmicTrading Session 3 Trade Signal Generation I FindingTrading Ideas and Common Pitfalls Oliver Steinki, CFA, FRM Outline Introduction Finding Trading Ideas Common Pitfalls of Trading Strategies

More information

Backtesting Performance with a Simple Trading Strategy using Market Orders

Backtesting Performance with a Simple Trading Strategy using Market Orders Backtesting Performance with a Simple Trading Strategy using Market Orders Yuanda Chen Dec, 2016 Abstract In this article we show the backtesting result using LOB data for INTC and MSFT traded on NASDAQ

More information

Modelling Credit Spreads for Counterparty Risk: Mean-Reversion is not Needed

Modelling Credit Spreads for Counterparty Risk: Mean-Reversion is not Needed Modelling Credit Spreads for Counterparty Risk: Mean-Reversion is not Needed Ignacio Ruiz, Piero Del Boca May 2012 Version 1.0.5 A version of this paper was published in Intelligent Risk, October 2012

More information

Market Timing Does Work: Evidence from the NYSE 1

Market Timing Does Work: Evidence from the NYSE 1 Market Timing Does Work: Evidence from the NYSE 1 Devraj Basu Alexander Stremme Warwick Business School, University of Warwick November 2005 address for correspondence: Alexander Stremme Warwick Business

More information

Nasdaq Chaikin Power US Small Cap Index

Nasdaq Chaikin Power US Small Cap Index Nasdaq Chaikin Power US Small Cap Index A Multi-Factor Approach to Small Cap Introduction Multi-factor investing has become very popular in recent years. The term smart beta has been coined to categorize

More information

We are not saying it s easy, we are just trying to make it simpler than before. An Online Platform for backtesting quantitative trading strategies.

We are not saying it s easy, we are just trying to make it simpler than before. An Online Platform for backtesting quantitative trading strategies. We are not saying it s easy, we are just trying to make it simpler than before. An Online Platform for backtesting quantitative trading strategies. Visit www.kuants.in to get your free access to Stock

More information

1/2 2. Mean & variance. Mean & standard deviation

1/2 2. Mean & variance. Mean & standard deviation Question # 1 of 10 ( Start time: 09:46:03 PM ) Total Marks: 1 The probability distribution of X is given below. x: 0 1 2 3 4 p(x): 0.73? 0.06 0.04 0.01 What is the value of missing probability? 0.54 0.16

More information

Lecture 17: More on Markov Decision Processes. Reinforcement learning

Lecture 17: More on Markov Decision Processes. Reinforcement learning Lecture 17: More on Markov Decision Processes. Reinforcement learning Learning a model: maximum likelihood Learning a value function directly Monte Carlo Temporal-difference (TD) learning COMP-424, Lecture

More information

Quantitative Investment: Research and Implementation in MATLAB

Quantitative Investment: Research and Implementation in MATLAB Quantitative Investment: Research and Implementation in MATLAB Edward Hoyle Fulcrum Asset Management 6 Chesterfield Gardens London, W1J 5BQ ed.hoyle@fulcrumasset.com 24 June 2014 MATLAB Computational Finance

More information

Does Naive Not Mean Optimal? The Case for the 1/N Strategy in Brazilian Equities

Does Naive Not Mean Optimal? The Case for the 1/N Strategy in Brazilian Equities Does Naive Not Mean Optimal? GV INVEST 05 The Case for the 1/N Strategy in Brazilian Equities December, 2016 Vinicius Esposito i The development of optimal approaches to portfolio construction has rendered

More information

Introducing EVO. An Evolutionary Money Management System Potomac Advisors Inc. Presented by Rich Paul

Introducing EVO. An Evolutionary Money Management System Potomac Advisors Inc. Presented by Rich Paul Introducing EVO An Evolutionary Money Management System Potomac Advisors Inc. Presented by Rich Paul 1 H e l l o! 2 Today s Agenda 1 W h o I a m, W h a t I d o & H o w I d o i t 30-years of registered,

More information

QF101 Solutions of Week 12 Tutorial Questions Term /2018

QF101 Solutions of Week 12 Tutorial Questions Term /2018 QF0 Solutions of Week 2 Tutorial Questions Term 207/208 Answer. of Problem The main idea is that when buying selling the base currency, buy sell at the ASK BID price. The other less obvious idea is that

More information

Equity Curve Analysis and Virtual Backtesting for TradeStation Toolbox Market Order Version

Equity Curve Analysis and Virtual Backtesting for TradeStation Toolbox Market Order Version Equity Curve Analysis and Virtual Backtesting for TradeStation Toolbox Market Order Version Copyright Traders Management 2015, all rights reserved Page 1 Disclaimer HYPOTHETICAL PERFORMANCE RESULTS HAVE

More information

Mean GMM. Standard error

Mean GMM. Standard error Table 1 Simple Wavelet Analysis for stocks in the S&P 500 Index as of December 31 st 1998 ^ Shapiro- GMM Normality 6 0.9664 0.00281 11.36 4.14 55 7 0.9790 0.00300 56.58 31.69 45 8 0.9689 0.00319 403.49

More information

Validation of Nasdaq Clearing Models

Validation of Nasdaq Clearing Models Model Validation Validation of Nasdaq Clearing Models Summary of findings swissquant Group Kuttelgasse 7 CH-8001 Zürich Classification: Public Distribution: swissquant Group, Nasdaq Clearing October 20,

More information

Game Theory and Economics Prof. Dr. Debarshi Das Department of Humanities and Social Sciences Indian Institute of Technology, Guwahati.

Game Theory and Economics Prof. Dr. Debarshi Das Department of Humanities and Social Sciences Indian Institute of Technology, Guwahati. Game Theory and Economics Prof. Dr. Debarshi Das Department of Humanities and Social Sciences Indian Institute of Technology, Guwahati. Module No. # 06 Illustrations of Extensive Games and Nash Equilibrium

More information

Applying the Principles of Quantitative Finance to the Construction of Model-Free Volatility Indices

Applying the Principles of Quantitative Finance to the Construction of Model-Free Volatility Indices Applying the Principles of Quantitative Finance to the Construction of Model-Free Volatility Indices Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg

More information

Portfolio Risk Management and Linear Factor Models

Portfolio Risk Management and Linear Factor Models Chapter 9 Portfolio Risk Management and Linear Factor Models 9.1 Portfolio Risk Measures There are many quantities introduced over the years to measure the level of risk that a portfolio carries, and each

More information

Navigator Fixed Income Total Return (ETF)

Navigator Fixed Income Total Return (ETF) CCM-17-09-1 As of 9/30/2017 Navigator Fixed Income Total Return (ETF) Navigate Fixed Income with a Tactical Approach With yields hovering at historic lows, bond portfolios could decline if interest rates

More information

Futures and Forward Markets

Futures and Forward Markets Futures and Forward Markets (Text reference: Chapters 19, 21.4) background hedging and speculation optimal hedge ratio forward and futures prices futures prices and expected spot prices stock index futures

More information

Navigator Tax Free Fixed Income

Navigator Tax Free Fixed Income CCM-17-12-967 As of 12/31/2017 Navigator Tax Free Fixed Income Navigate Tax-Free Fixed Income with Individual Municipal Bonds With yields hovering at historic lows, an active strategy focused on managing

More information

The Fundamental Law of Mismanagement

The Fundamental Law of Mismanagement The Fundamental Law of Mismanagement Richard Michaud, Robert Michaud, David Esch New Frontier Advisors Boston, MA 02110 Presented to: INSIGHTS 2016 fi360 National Conference April 6-8, 2016 San Diego,

More information

RSI 2 System. for Shorter term SWING trading and Longer term TREND following. Dave Di Marcantonio 2016

RSI 2 System. for Shorter term SWING trading and Longer term TREND following. Dave Di Marcantonio 2016 RSI 2 System for Shorter term SWING trading and Longer term TREND following Dave Di Marcantonio 2016 ddimarc@gmail.com Disclaimer Dave Di Marcantonio Disclaimer & Terms of Use All traders and self-directed

More information

FE670 Algorithmic Trading Strategies. Stevens Institute of Technology

FE670 Algorithmic Trading Strategies. Stevens Institute of Technology FE670 Algorithmic Trading Strategies Lecture 4. Cross-Sectional Models and Trading Strategies Steve Yang Stevens Institute of Technology 09/26/2013 Outline 1 Cross-Sectional Methods for Evaluation of Factor

More information

Navigator Taxable Fixed Income

Navigator Taxable Fixed Income CCM-17-09-966 As of 9/30/2017 Navigator Taxable Fixed Navigate Fixed with Individual Bonds With yields hovering at historic lows, an active strategy focused on managing risk may deliver better client outcomes

More information

Columbus Asset Allocation Report For Portfolio Rebalancing on

Columbus Asset Allocation Report For Portfolio Rebalancing on Columbus Asset Allocation Report For Portfolio Rebalancing on 2017-08-31 Strategy Overview Columbus is a global asset allocation strategy designed to adapt to prevailing market conditions. It dynamically

More information

An Application of CAN SLIM Investing in the Dow Jones Benchmark

An Application of CAN SLIM Investing in the Dow Jones Benchmark An Application of CAN SLIM Investing in the Dow Jones Benchmark Track: Finance Introduction Matt Lutey, Mohammad Kabir Hassan and Dave Rayome This paper provides an alternative view of the popular CAN

More information

17 MAKING COMPLEX DECISIONS

17 MAKING COMPLEX DECISIONS 267 17 MAKING COMPLEX DECISIONS The agent s utility now depends on a sequence of decisions In the following 4 3grid environment the agent makes a decision to move (U, R, D, L) at each time step When the

More information

Chapter 4 Random Variables & Probability. Chapter 4.5, 6, 8 Probability Distributions for Continuous Random Variables

Chapter 4 Random Variables & Probability. Chapter 4.5, 6, 8 Probability Distributions for Continuous Random Variables Chapter 4.5, 6, 8 Probability for Continuous Random Variables Discrete vs. continuous random variables Examples of continuous distributions o Uniform o Exponential o Normal Recall: A random variable =

More information

Hedge Fund Salary Report

Hedge Fund Salary Report Hedge Fund Salary Report By HedgeFundHub.com Copyright 2011 HedgeFundHub.com ALL RIGHTS RESERVED This material is protected by copyright law. You may not copy, reproduce, forward or post it in any format.

More information

Numerical Descriptive Measures. Measures of Center: Mean and Median

Numerical Descriptive Measures. Measures of Center: Mean and Median Steve Sawin Statistics Numerical Descriptive Measures Having seen the shape of a distribution by looking at the histogram, the two most obvious questions to ask about the specific distribution is where

More information

Risk Control with Trailing Stops and Options Systematic Evaluation of Popular Risk Control Techniques. Jared Broad Founder & CEO.

Risk Control with Trailing Stops and Options Systematic Evaluation of Popular Risk Control Techniques. Jared Broad Founder & CEO. Risk Control with Trailing Stops and Options Systematic Evaluation of Popular Risk Control Techniques Jared Broad Founder & CEO www.quantconnect.com Outline Introduction to QuantConnect Algorithm Development

More information

Prediction Market Prices as Martingales: Theory and Analysis. David Klein Statistics 157

Prediction Market Prices as Martingales: Theory and Analysis. David Klein Statistics 157 Prediction Market Prices as Martingales: Theory and Analysis David Klein Statistics 157 Introduction With prediction markets growing in number and in prominence in various domains, the construction of

More information

Asset Selection Model Based on the VaR Adjusted High-Frequency Sharp Index

Asset Selection Model Based on the VaR Adjusted High-Frequency Sharp Index Management Science and Engineering Vol. 11, No. 1, 2017, pp. 67-75 DOI:10.3968/9412 ISSN 1913-0341 [Print] ISSN 1913-035X [Online] www.cscanada.net www.cscanada.org Asset Selection Model Based on the VaR

More information

AQF. Week C. Spread Trading. An Introduction. 1 of 23 July 15, Christopher Ting

AQF. Week C. Spread Trading. An Introduction. 1 of 23 July 15, Christopher Ting Spread Trading An Introduction 1 of 23 July 15, 2017 Ex-SIMEX Locals Association of Financial and Commodity Traders Source: AFACT 2 of 23 July 15, 2017 Revenge of the Geeks During the open-outcry era,

More information

1 of 6 7/10/2013 8:42 AM

1 of 6 7/10/2013 8:42 AM Stepped Parameter Summary Performance Test Ending Balance CAGR% MAR Modified Sharpe Annual Sharpe Max Total Equity DD Longest Drawdown # Trades 1 75,934.75 52.09% 1.34 0.91 NA 38.9% 5.8 331 1 of 6 7/10/2013

More information

THE ACHILLES HEEL OF VALUE FUNDS, THE TITANS OF VARIABLE INCOME

THE ACHILLES HEEL OF VALUE FUNDS, THE TITANS OF VARIABLE INCOME The Quantitative Hedge product range is a new modality of automatic trading systems designed to perform a risk-hedging function, when combined with the purchase of European shares. For that purpose hedging

More information

4 Reinforcement Learning Basic Algorithms

4 Reinforcement Learning Basic Algorithms Learning in Complex Systems Spring 2011 Lecture Notes Nahum Shimkin 4 Reinforcement Learning Basic Algorithms 4.1 Introduction RL methods essentially deal with the solution of (optimal) control problems

More information

A share on algorithm trading strategy design and testing. Peter XI 20 November 2017

A share on algorithm trading strategy design and testing. Peter XI 20 November 2017 A share on algorithm trading strategy design and testing Peter XI 20 November 2017 About me Year 5 Quantitative Finance & Risk Management student Quantitative Research & Trading Intern at CASH Algo Finance

More information

New financial analysis tools at CARMA

New financial analysis tools at CARMA New financial analysis tools at CARMA Amir Salehipour CARMA, The University of Newcastle Joint work with Jonathan M. Borwein, David H. Bailey and Marcos López de Prado November 13, 2015 Table of Contents

More information

Black Box Trend Following Lifting the Veil

Black Box Trend Following Lifting the Veil AlphaQuest CTA Research Series #1 The goal of this research series is to demystify specific black box CTA trend following strategies and to analyze their characteristics both as a stand-alone product as

More information

Intro to Decision Theory

Intro to Decision Theory Intro to Decision Theory Rebecca C. Steorts Bayesian Methods and Modern Statistics: STA 360/601 Lecture 3 1 Please be patient with the Windows machine... 2 Topics Loss function Risk Posterior Risk Bayes

More information

P2.T5. Market Risk Measurement & Management. Jorion, Value-at Risk: The New Benchmark for Managing Financial Risk, 3 rd Edition

P2.T5. Market Risk Measurement & Management. Jorion, Value-at Risk: The New Benchmark for Managing Financial Risk, 3 rd Edition P2.T5. Market Risk Measurement & Management Jorion, Value-at Risk: The New Benchmark for Managing Financial Risk, 3 rd Edition Bionic Turtle FRM Study Notes By David Harper, CFA FRM CIPM and Deepa Raju

More information

EARN 38 to 54%+ Returns Spending Under 30 Minutes a Day. Presented by: Todd Mitchell CEO & Founder Trading Concepts, Inc.

EARN 38 to 54%+ Returns Spending Under 30 Minutes a Day. Presented by: Todd Mitchell CEO & Founder Trading Concepts, Inc. EARN 38 to 54%+ Returns Spending Under 30 Minutes a Day Presented by: Todd Mitchell CEO & Founder Trading Concepts, Inc. Who is Todd Mitchell? I have been involved with the markets and actively trading

More information

Maximum Likelihood Estimation

Maximum Likelihood Estimation Maximum Likelihood Estimation The likelihood and log-likelihood functions are the basis for deriving estimators for parameters, given data. While the shapes of these two functions are different, they have

More information

Alternative Allocation

Alternative Allocation Investment Diversification Alternative Allocation ACN 168 869 163 Copyright 2017 Global Merces Funds Management Ltd DISCLAIMER This document has been issued by Global Merces Funds Management Limited (Global

More information

The Polychromatic Momentum System Copyright 2002 Dennis Meyers, Ph.D.

The Polychromatic Momentum System Copyright 2002 Dennis Meyers, Ph.D. The Polychromatic Momentum System Copyright 2002 Dennis Meyers, Ph.D. The Polychromatic Momentum System Momentum is defined as the difference, or percent change, between the current bar and a bar some

More information

2D5362 Machine Learning

2D5362 Machine Learning 2D5362 Machine Learning Reinforcement Learning MIT GALib Available at http://lancet.mit.edu/ga/ download galib245.tar.gz gunzip galib245.tar.gz tar xvf galib245.tar cd galib245 make or access my files

More information

Market Maker Protection Model

Market Maker Protection Model Market Maker Protection Model NASDAQ OMX Derivatives Markets Equity Derivatives Version 1.1 May 21, 2010 1(16) Table of Contents 1 Introduction... 5 2 Solution summary... 6 3 Parameters... 6 3.1 Exposure

More information

Investment Insight. Are Risk Parity Managers Risk Parity (Continued) Summary Results of the Style Analysis

Investment Insight. Are Risk Parity Managers Risk Parity (Continued) Summary Results of the Style Analysis Investment Insight Are Risk Parity Managers Risk Parity (Continued) Edward Qian, PhD, CFA PanAgora Asset Management October 2013 In the November 2012 Investment Insight 1, I presented a style analysis

More information

Copyright 2005 Pearson Education, Inc. Slide 6-1

Copyright 2005 Pearson Education, Inc. Slide 6-1 Copyright 2005 Pearson Education, Inc. Slide 6-1 Chapter 6 Copyright 2005 Pearson Education, Inc. Measures of Center in a Distribution 6-A The mean is what we most commonly call the average value. It is

More information

Navigator High Dividend Equity

Navigator High Dividend Equity CCM-17-09-6 As of 9/30/2017 Navigator High Dividend Equity Navigate the U.S. Equity Markets with a Focus on Dividend Growth We believe it is prudent to focus on dividend growth through fundamental analysis,

More information

CHAPTER 8 Estimating with Confidence

CHAPTER 8 Estimating with Confidence CHAPTER 8 Estimating with Confidence 8.2 Estimating a Population Proportion The Practice of Statistics, 5th Edition Starnes, Tabor, Yates, Moore Bedford Freeman Worth Publishers Estimating a Population

More information

Executing Effective Validations

Executing Effective Validations Executing Effective Validations By Sarah Davies Senior Vice President, Analytics, Research and Product Management, VantageScore Solutions, LLC Oneof the key components to successfully utilizing risk management

More information

Much of what appears here comes from ideas presented in the book:

Much of what appears here comes from ideas presented in the book: Chapter 11 Robust statistical methods Much of what appears here comes from ideas presented in the book: Huber, Peter J. (1981), Robust statistics, John Wiley & Sons (New York; Chichester). There are many

More information

Back to estimators...

Back to estimators... Back to estimators... So far, we have: Identified estimators for common parameters Discussed the sampling distributions of estimators Introduced ways to judge the goodness of an estimator (bias, MSE, etc.)

More information

Chapter 9 Chapter Friday, June 4 th

Chapter 9 Chapter Friday, June 4 th Chapter 9 Chapter 10 Sections 9.1 9.5 and 10.1 10.5 Friday, June 4 th Parameter and Statisticti ti Parameter is a number that is a summary characteristic of a population Statistic, is a number that is

More information

Trend Detection Index

Trend Detection Index INDICATORS Are You In A Trend? Trend Detection Index Can you tell when a trend s begun and when it s ended? You can with this. by M.H. Pee he trend detection index (TDI) is used T to detect when a trend

More information

Model-Based Trading Strategies. Financial-Hacker.com Johann Christian Lotter / op group Germany GmbH

Model-Based Trading Strategies. Financial-Hacker.com Johann Christian Lotter / op group Germany GmbH Model-Based Trading Strategies Financial-Hacker.com Johann Christian Lotter / jcl@opgroup.de op group Germany GmbH All trading systems herein are for education only. No profits are guaranteed. Don t blame

More information

Discussion of Optimal Option Portfolio Strategies by Jose Afonso Faias and Pedro Santa-Clara

Discussion of Optimal Option Portfolio Strategies by Jose Afonso Faias and Pedro Santa-Clara Discussion of Optimal Option Portfolio Strategies by Jose Afonso Faias and Pedro Santa-Clara Pierre Collin-Dufresne EPFL & SFI Swissquote October 2011 Summary Interpretation of Option return anomalies

More information

CSCI 1951-G Optimization Methods in Finance Part 07: Portfolio Optimization

CSCI 1951-G Optimization Methods in Finance Part 07: Portfolio Optimization CSCI 1951-G Optimization Methods in Finance Part 07: Portfolio Optimization March 9 16, 2018 1 / 19 The portfolio optimization problem How to best allocate our money to n risky assets S 1,..., S n with

More information

Bollinger Band Breakout System

Bollinger Band Breakout System Breakout System Volatility breakout systems were already developed in the 1970ies and have stayed popular until today. During the commodities boom in the 70ies they made fortunes, but in the following

More information

Multi-armed bandit problems

Multi-armed bandit problems Multi-armed bandit problems Stochastic Decision Theory (2WB12) Arnoud den Boer 13 March 2013 Set-up 13 and 14 March: Lectures. 20 and 21 March: Paper presentations (Four groups, 45 min per group). Before

More information

High-frequency trading and changes in futures price behavior

High-frequency trading and changes in futures price behavior High-frequency trading and changes in futures price behavior Charles M. Jones Robert W. Lear Professor of Finance and Economics Columbia Business School April 2018 1 Has HFT broken our financial markets?

More information

Lecture Quantitative Finance Spring Term 2015

Lecture Quantitative Finance Spring Term 2015 implied Lecture Quantitative Finance Spring Term 2015 : May 7, 2015 1 / 28 implied 1 implied 2 / 28 Motivation and setup implied the goal of this chapter is to treat the implied which requires an algorithm

More information

Trading Financial Markets with Online Algorithms

Trading Financial Markets with Online Algorithms Trading Financial Markets with Online Algorithms Esther Mohr and Günter Schmidt Abstract. Investors which trade in financial markets are interested in buying at low and selling at high prices. We suggest

More information

Chapter 3 - Lecture 5 The Binomial Probability Distribution

Chapter 3 - Lecture 5 The Binomial Probability Distribution Chapter 3 - Lecture 5 The Binomial Probability October 12th, 2009 Experiment Examples Moments and moment generating function of a Binomial Random Variable Outline Experiment Examples A binomial experiment

More information

Hi, everyone. there. should be. We are an this for 28 Louie, our

Hi, everyone. there. should be. We are an this for 28 Louie, our TRANSCRIPT OF THE TD AMERITRADE WEBINAR January 22, 2015 Hi, everyone. We appreciate you taking time out of your day to join us. My name is Andrew Harris, and I head the national sales team to the advisors.

More information

Applied Macro Finance

Applied Macro Finance Master in Money and Finance Goethe University Frankfurt Week 8: An Investment Process for Stock Selection Fall 2011/2012 Please note the disclaimer on the last page Announcements December, 20 th, 17h-20h:

More information

Comparing Allocations under Asymmetric Information: Coase Theorem Revisited

Comparing Allocations under Asymmetric Information: Coase Theorem Revisited Comparing Allocations under Asymmetric Information: Coase Theorem Revisited Shingo Ishiguro Graduate School of Economics, Osaka University 1-7 Machikaneyama, Toyonaka, Osaka 560-0043, Japan August 2002

More information

Different Perspectives on Investment Performance Tweedy, Browne Global Value Fund

Different Perspectives on Investment Performance Tweedy, Browne Global Value Fund Different Perspectives on Investment Performance Tweedy, Browne Global Value Fund This booklet provides an historical perspective concerning the year-by-year variability of investment returns for the Tweedy,

More information

Spline Methods for Extracting Interest Rate Curves from Coupon Bond Prices

Spline Methods for Extracting Interest Rate Curves from Coupon Bond Prices Spline Methods for Extracting Interest Rate Curves from Coupon Bond Prices Daniel F. Waggoner Federal Reserve Bank of Atlanta Working Paper 97-0 November 997 Abstract: Cubic splines have long been used

More information

Handout 4: Deterministic Systems and the Shortest Path Problem

Handout 4: Deterministic Systems and the Shortest Path Problem SEEM 3470: Dynamic Optimization and Applications 2013 14 Second Term Handout 4: Deterministic Systems and the Shortest Path Problem Instructor: Shiqian Ma January 27, 2014 Suggested Reading: Bertsekas

More information

On Existence of Equilibria. Bayesian Allocation-Mechanisms

On Existence of Equilibria. Bayesian Allocation-Mechanisms On Existence of Equilibria in Bayesian Allocation Mechanisms Northwestern University April 23, 2014 Bayesian Allocation Mechanisms In allocation mechanisms, agents choose messages. The messages determine

More information

CS 361: Probability & Statistics

CS 361: Probability & Statistics March 12, 2018 CS 361: Probability & Statistics Inference Binomial likelihood: Example Suppose we have a coin with an unknown probability of heads. We flip the coin 10 times and observe 2 heads. What can

More information

ONLINE APPENDIX. Do Individual Currency Traders Make Money?

ONLINE APPENDIX. Do Individual Currency Traders Make Money? ONLINE APPENDIX Do Individual Currency Traders Make Money? 5.7 Robustness Checks with Second Data Set The performance results from the main data set, presented in Panel B of Table 2, show that the top

More information

The role of the Model Validation function to manage and mitigate model risk

The role of the Model Validation function to manage and mitigate model risk arxiv:1211.0225v1 [q-fin.rm] 21 Oct 2012 The role of the Model Validation function to manage and mitigate model risk Alberto Elices November 2, 2012 Abstract This paper describes the current taxonomy of

More information

Unit-of-Risk Ratios A New Way to Assess Alpha

Unit-of-Risk Ratios A New Way to Assess Alpha CHAPTER 5 Unit-of-Risk Ratios A New Way to Assess Alpha The ultimate goal of the Protean Strategy and of every investor should be to maximize return per Unitof-Risk (UoR). Doing this necessitates the right

More information

Real Time Trading Signals

Real Time Trading Signals Real Time Trading Signals Robert Almgren Kx25 May 18, 2018 1 2 Quantitative Brokers business Algorithmic trade execution and cost measurement Agency only: no prop trading or market making Futures and fixed

More information

16 MAKING SIMPLE DECISIONS

16 MAKING SIMPLE DECISIONS 247 16 MAKING SIMPLE DECISIONS Let us associate each state S with a numeric utility U(S), which expresses the desirability of the state A nondeterministic action A will have possible outcome states Result

More information

The Swan Defined Risk Strategy - A Full Market Solution

The Swan Defined Risk Strategy - A Full Market Solution The Swan Defined Risk Strategy - A Full Market Solution Absolute, Relative, and Risk-Adjusted Performance Metrics for Swan DRS and the Index (Summary) June 30, 2018 Manager Performance July 1997 - June

More information

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg :

More information

Optimal Incentive Contract with Costly and Flexible Monitoring

Optimal Incentive Contract with Costly and Flexible Monitoring Optimal Incentive Contract with Costly and Flexible Monitoring Anqi Li 1 Ming Yang 2 1 Department of Economics, Washington University in St. Louis 2 Fuqua School of Business, Duke University January 2016

More information

Definition 4.1. In a stochastic process T is called a stopping time if you can tell when it happens.

Definition 4.1. In a stochastic process T is called a stopping time if you can tell when it happens. 102 OPTIMAL STOPPING TIME 4. Optimal Stopping Time 4.1. Definitions. On the first day I explained the basic problem using one example in the book. On the second day I explained how the solution to the

More information

Probability & Statistics

Probability & Statistics Probability & Statistics BITS Pilani K K Birla Goa Campus Dr. Jajati Keshari Sahoo Department of Mathematics Statistics Descriptive statistics Inferential statistics /38 Inferential Statistics 1. Involves:

More information

Quant -Ideas. User Guide

Quant -Ideas. User Guide 2013 Quant -Ideas User Guide What is Quant- Ideas?... 3 Why Quant- Ideas?... 3 What time Quant- Ideas is up daily?... 3 Quant-Ideas Screenshot... 3 Glossary of Fields... Error! Bookmark not defined. Pricing

More information

Internet Appendix: High Frequency Trading and Extreme Price Movements

Internet Appendix: High Frequency Trading and Extreme Price Movements Internet Appendix: High Frequency Trading and Extreme Price Movements This appendix includes two parts. First, it reports the results from the sample of EPMs defined as the 99.9 th percentile of raw returns.

More information

Extend the ideas of Kan and Zhou paper on Optimal Portfolio Construction under parameter uncertainty

Extend the ideas of Kan and Zhou paper on Optimal Portfolio Construction under parameter uncertainty Extend the ideas of Kan and Zhou paper on Optimal Portfolio Construction under parameter uncertainty George Photiou Lincoln College University of Oxford A dissertation submitted in partial fulfilment for

More information

Trading Global Markets using Technical Analysis. Andy Bower

Trading Global Markets using Technical Analysis. Andy Bower Trading Global Markets using Technical Analysis Andy Bower www.alchemetrics.org Format Technical Analysis Data Chart Patterns Computers/Backtesting Neural Nets/Genetic Algorithms Essentials of Trading

More information

CEC login. Student Details Name SOLUTIONS

CEC login. Student Details Name SOLUTIONS Student Details Name SOLUTIONS CEC login Instructions You have roughly 1 minute per point, so schedule your time accordingly. There is only one correct answer per question. Good luck! Question 1. Searching

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2010, Mr. Ruey S. Tsay Solutions to Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2010, Mr. Ruey S. Tsay Solutions to Final Exam The University of Chicago, Booth School of Business Business 410, Spring Quarter 010, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (4 pts) Answer briefly the following questions. 1. Questions 1

More information

Volatility of Asset Returns

Volatility of Asset Returns Volatility of Asset Returns We can almost directly observe the return (simple or log) of an asset over any given period. All that it requires is the observed price at the beginning of the period and the

More information

Chapter 16. Random Variables. Copyright 2010, 2007, 2004 Pearson Education, Inc.

Chapter 16. Random Variables. Copyright 2010, 2007, 2004 Pearson Education, Inc. Chapter 16 Random Variables Copyright 2010, 2007, 2004 Pearson Education, Inc. Expected Value: Center A random variable is a numeric value based on the outcome of a random event. We use a capital letter,

More information

Statistical Arbitrage: Pair Trading

Statistical Arbitrage: Pair Trading Quantitative Trading Strategies Statistical Arbitrage: Pair Trading 1 of 85 March 20, 2017 Pair Trading: Distance Model A Simple Approach 2 of 85 March 20, 2017 Stocks from the Same Industry Reduce market

More information