fe8827 q uantitative t rading s trategies project h igh f requency t rading u sing r egime s...

29
FE8827 QUANTITATIVE TRADING STRATEGIES PROJECT HIGH FREQUENCY TRADING USING REGIME SWITCHING STRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai (G1000293G)

Post on 15-Jan-2016

216 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

FE8827 QUANTITATIVE TRADING STRATEGIES PROJECT

HIGH FREQUENCY TRADING USING REGIME SWITCHING STRATEGY

Huynh Gia Huy (G1000176L)

Le Hoang Thai (G1000293G)

Page 2: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

REFERENCE

“Developing High-Frequency Equities Trading Models”, Leandro Rafael Infantino, Savion Itzhaki, MBA thesis, MIT, June 2010.

Page 3: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

CONTENTS

Simply Guide Model Building: motivation, trading ideas,

potential problems and implementation. Simulation Results: without/with transaction

costs, development from the thesis. Weaknesses of Trading Signals in the Thesis

and Proposed Improvement: mean reverting signals and regime switching signals.

Page 4: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMPLE GUIDE To display performance statistics, run rsperf.m file:

rsperf(index, rf, lossthreshold) Input:

index = 1: regime switching with transaction costs.

index = 2: regime switching without transaction costs.

index = 3: mean reverting with transaction costs.

index = 4: mean reverting without transaction costs.

rf: risk free rate

lossthreshold: omega loss threshold Ouput: Omega ratio, Sharpe ratio, Omega Sharpe ratio,

MaxDD (max drawdown) and MaxDDD (max drawdown duration).

Page 5: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMPLE GUIDE To start trading strategies, run regswitch.m file.

In this file, turn on/off regime switching by setting regimeSwitching variable to 1 to turn on and 0 to turn off.

regimeSwitching = 1; % default value

Change line 32 in this file to run simulation for a period of time. Default is whole year running from week 1 to week 52.

for week=1:52

Page 6: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

MODEL BUILDING - MOTIVATION

In high frequency environment, high precision of the stock return prediction is not required. Fundamental Law of Active Management

IR: Information RatioIC: Information Coefficient (our skill)Breadth: “the number of independent forecasts of

exceptional return made per year”

Breadth very big => IC can be relatively small => prediction can be less

precise

Page 7: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

MODEL BUILDING - TRADING IDEAS

Use Principle Component Analysis (PCA) as the basis to compute cumulative returns

Depending on the current strategy (mean-reversion or momentum), trading signals are generated if observed cumulative returns differ from model cumulative returns. Predicted – observed > threshold => buy (sell) Predicted – observed < -threshold => sell (buy)

Page 8: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

DIFFERENCES BETWEEN THIS PROJECT AND THE PAPER Number of stocks used in the simulation: only first 10

stocks (instead of 50) are chosen to represent the stock universe.

Data source: the primary data used in this project is obtained from Thomson Reuters Tick History database, and from two major exchanges: NASDAQ and NYSE; whereas prices used in the thesis are from top of the book bid-ask quotes.

Model parameters: various model parameters are not specified in the thesis, thus simulation results can be affected by the choice of different parameter values.

Transaction costs are included. Signal in the thesis is found insufficient and has been

modified to improve stabilty and performance of returns.

Page 9: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

MODEL BUILDING - POTENTIAL PROBLEMS - DATA VOLUME

Huge volume of data: more than 15Gbs of one year tick data to process (and that’s only for 10 stocks). Simulation time can be very long because of this. Code optimization is important!

Page 10: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

IMPLEMENTATION

Matlab is chosen as it provides many built-in mathematics functions suitable for rapid model development.

Pre-process data before running simulation: Only one mid-price per second per stock Need to duplicate values for missing seconds in

raw data. Processed data saved in separate .csv files.

Run simulation based on processed data. All daily returns are saved in .csv files.

Page 11: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SOME CODE OPTIMIZATION TECHNIQUES

Always pre-allocate memory for matrix and avoid changing matrix size constantly.

Avoid loop as much as possible and make use of Vectorization (performance increased dramatically!)

Use Matlab profiler to identify areas for improvement.

Normal for loop Vectorization

i = 0;for t = 0:.01:10

i = i + 1; y(i) = sin(t);

end

t = 0:.01:10;y = sin(t);

Page 12: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMULATION RESULTS - THESIS

Mean-reversion strategy, without transaction cost.

Page 13: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMULATION RESULTS – THIS PROJECT

Mean-reversion strategy, without transaction cost.

1 13 25 37 49 61 73 85 97 1091211331451571691811932052172292410.00%

100.00%

200.00%

300.00%

400.00%

500.00%

600.00%

Cumulative returns

Page 14: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMULATION RESULTS – THIS PROJECT

Mean-reversion strategy, without transaction cost.

Omega: 2.6741 (Loss threshold: 0) Sharpe: 0.3507 Omega Sharpe: 0.0022 Max Drawdown: 0.1566 Max Drawdown duration: 73 days.

Page 15: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMULATION RESULTS - THESIS

Regime switching strategy, without transaction cost.

Page 16: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMULATION RESULTS – THIS PROJECT

Regime switching strategy, without transaction cost.

1 12 23 34 45 56 67 78 89 100111122133144155166177188199210221232243

-30.00%

-25.00%

-20.00%

-15.00%

-10.00%

-5.00%

0.00%

5.00%

10.00%

15.00%

Cumulative returns

Page 17: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMULATION RESULTS – THIS PROJECT

Regime switching strategy, without transaction cost.

Omega: 0.7381 (Loss threshold: 0) Sharpe: -0.0903 Omega Sharpe: -0.0014 Max Drawdown: 0.5569 Max Drawdown duration: 226 days.

Page 18: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

COMMENTS

The different simulation results between this project and thesis can be due to: Different stock universe Different data source (therefore different mid-prices) Parameters used (thresholds).

In the thesis, transaction cost is not taken into account and it is a important factor to consider in high frequency trading model. All profits can be erased by transaction cost.

Next step for this project: include transaction cost! To be realistic, transaction cost from Interactive

Brokers is used; that is, $0.005 / share / trade

Page 19: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

TRANSACTION COSTS: MODIFICATIONS TO EXISTING STRATEGY

In an attempt to factor in the transaction cost, the trading model is modified. Two potential places: Mark-up the threshold by the transaction cost,

i.e.new threshold = threshold + transaction cost

Lower the log returns. Use this new log returns as input for Principal Components Analysislog_return = log[(current_price - cost) / previous_price + cost)]

This project uses the second approach.

Page 20: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMULATION RESULT – MODIFIED MODEL

Mean-reversion strategy, with transaction cost.

1 13 25 37 49 61 73 85 97 109121133145157169181193205217229241

-20.00%

-15.00%

-10.00%

-5.00%

0.00%

5.00%

10.00%

15.00%

20.00%

Cumulative returns

Page 21: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMULATION RESULTS – THIS PROJECT

Mean-reversion strategy, with transaction cost.

Omega: 1.0131 (Loss threshold: 0) Sharpe: 0.0192 Omega Sharpe: 0.0002315 Max Drawdown: 0.2373 Max Drawdown duration: 68 days.

Page 22: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMULATION RESULT – MODIFIED MODEL

Modified regime switching strategy, with transaction cost.

1 13 25 37 49 61 73 85 97 109121133145157169181193205217229241

-35.00%

-30.00%

-25.00%

-20.00%

-15.00%

-10.00%

-5.00%

0.00%

5.00%

Cumulative returns

Page 23: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

SIMULATION RESULTS – THIS PROJECT

Mean-reversion strategy, with transaction cost.

Omega: 0.7805 (Loss threshold: 0) Sharpe: -0.0708 Omega Sharpe: -0.0010 Max Drawdown: 0.4941 Max Drawdown duration: 248 days.

Page 24: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

WEAKNESSES OF THE TRADING SIGNALS IN THE THESIS – PROPOSED IMPROVEMENTS

Mean reverting signal: In the thesis, if mean reverting signal > 0, we

buy and sell when signal < 0. It includes noise due to rounding or computational issues.

Solution: set a threshold to filter away noise that creates fault trades.

This threshold after trial and error has been determined to be 0.0001 (parameter 1)

Page 25: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

WEAKNESSES OF THE TRADING SIGNALS IN THE THESIS - PROPOSED IMPROVEMENTS

Regime Switching Signals: The authors use difference in two consecutive

Euclidean distance to signal the regime switching: If EH(t) - EH(t-1) > 0: momentum regime If EH(t) - EH(t-1) < = 0: mean reverting regime

This signals introduce noise and cause fault signals and consequently fault trades.

Page 26: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

WEAKNESSES OF THE TRADING SIGNALS IN THE THESIS - PROPOSED IMPROVEMENTS

Regime Switching Signals – Noise

Diagram of Euclidean distance difference (EH(t) - EH(t-1)) is shown above.

According to the authors, the strategy keeps changing the regimes as signals swing around 0 from positive to negative.

Page 27: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

WEAKNESSES OF THE TRADING SIGNALS IN THE THESIS - PROPOSED IMPROVEMENTS Regime Switching Signals – Fault Signals

Diagram of Euclidean distance difference (EH(t) - EH(t-1)) is shown above and Euclidean distance(EH(t)) below.

One strong pulse in E distance creates one regime switching signal but it contains one up pulse and one down pulse in E distance difference. According to the authors, it creates two signals that causes the system to switch back and forth (mean reverting -> momentum -> mean reverting) within <150 seconds.

Page 28: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

WEAKNESSES OF THE TRADING SIGNALS IN THE THESIS - PROPOSED IMPROVEMENTS

Regime Switching Signals – Noise – Solution We set a threshold of 2 standard deviation to

filter out noise (parameter 2). Magnitude falls between ± 2 std dev is considered insignificant.

Instead of using differences of 2 consecutive E distance (EH(t) - EH(t-1)), we use EH(t) – ewma5(EH(t)) where ewma5(EH(t)) is equally weighted moving averages value of previous 5 seconds of E distance (parameter 3).

Ignore 2 consecutive regime switching signals fall into a timespan of less than 250 seconds to remove fault signals (parameter 4).

Page 29: FE8827 Q UANTITATIVE T RADING S TRATEGIES PROJECT H IGH F REQUENCY T RADING U SING R EGIME S WITCHING S TRATEGY Huynh Gia Huy (G1000176L) Le Hoang Thai

CONCLUSIONS

Simulation returns are very sensitive to parameters used.

All 4 parameters can be improved by employing optimization.

Due to the time constraint, we leave this part for future development.