Why GAP fadding? My existing strategies tend to trade between 2-10 days. Typically GAP fading strategies are shorter. Furthermore I decided to look into fading an UP-GAP only, hence taking on a short trade. Because my existing strategies take on more longs than shorts.
About the strategy
What to trade
Strategy – Results
(click on the picture to enlarge it)
Review
The strategy performed EXTREMELY well until end of 2009. By the beginning of 2010 it literally stopped working. I’m asking myself: what caused the sudden death of the strategy? Can it be explained due to shrinking volatility post financial crisis? Partially, already in 2009 volatility was shrinking but the strategy performed very well (122% CAGR).
I would like to get your thoughts why the strategy stopped working. Please drop a comment or sent me an email hassler.frank (at) gmail.com.
– Frank
AmiBroker – AFL
SetBacktestMode( backtestRegularraw ); SetTradeDelays( 0, 0, 0, 0 ); SetOption( "CommissionAmount", 0.00 ); SetOption( "AllowSamebarExit", True ); SetOption( "MaxOpenPositions", 2 ); SetOption( "MaxOpenLong", 2 ); SetOption( "MaxOpenShort", 0 ); SetPositionSize( 50, spsPercentOfEquity ); RoundLotSize = 0; Short = Cover = Buy = Sell = False; ShortPrice = Open; CoverPrice = Close; ATR5 = Close * ( ATR( 5 ) / MA( Avg, 5 ) ) ; Gap = IIf( Open > Ref( Close, -1 ), ( Open - Ref( Close, -1 ) ) / Ref( ATR5, -1 ), 0 ); Rank = PercentRank( gap, 252 ); Short = Rank > 75; Cover = True; PositionScore = rank;