Introduction

I saw the following paper on SSRN and thought it would be interesting to implement within QuantConnect. I thought I'd share it with the community to start a discussion and see if there are any interesting ways to improve.

The strategy is essentially an intraday breakout strategy based on the average absolute deviation from the open over the last 14 days.

The paper uses the max between the intraday VWAP and upper band as a trailing stop for longs or the min between VWAP and lower band for shorts.

Method

To build the backtest, I created a custom indicator that calculates the average absolute deviation from the day's open at each time step and returns the current average over the last 14 days.

Results

Overall the results are positive, but no where near as impressive as in the original paper. Let me know your thoughts!