Quantitative trading, Ernie Chang

This book contains basic concepts and approach (step by step) for does that want to initiate themselves on Quantitative trading. The focus is on statistical arbitrage trading, that deals with the simplest financial instruments: stocks, futures, and sometimes currencies.

The chapters cover the steps a trader should take:

  1. The Whats, Whos, and Whys of Quantitative Trading,
  2. Fishing for Ideas,
  3. Backtesting,
  4. Setting Up Your Business,
  5. Execution Systems,
  6. Money and Risk Management,
  7. Special Topics in Quantitative Trading, (reading it now)
  8. Conclusions.

You can follow the author blog that contains further valuable information and some nice examples.

A short list of common pitfalls related to how the back-test program is written:

  1. Survivor-ship bias: data does not contain companies that have fallen bankruptcy.
  2. Look-Ahead Bias: this phenomenon happens when you are using information that was available only at a time ahead of the instant the trade was made. For instance, “Buy when the stock is within 1 percent of the day’s low”.
  3. Data-Snooping Bias: the use too much parameters that make you build an over-optimized model. A rule of thumb: 5 parameters.
  4. Sample size: you need enough data to back test, how much? As a rule of thumb, let’s assume that the number of data points needed for optimizing your parameters is equal to 252 times the number of free parameters your model has. For instance, you define a daily trading model with three parameters, then you should have at least three years’ worth of back-test data with daily prices.
  5. Out-of-Sample Testing: divide your historical data into 2 parts. Use the first part for training, and keep the second part to test the resulting model.

Leave a Comment